generated from westfarn/web_django_template
12 lines
247 B
Python
12 lines
247 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class CoreConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "core"
|
|
|
|
def ready(self):
|
|
from core.registry import register_feature
|
|
|
|
register_feature("core")
|