12 lines
332 B
Python
12 lines
332 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class CoreConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "core"
|
|
verbose_name = _("core")
|
|
|
|
def ready(self):
|
|
import core.elasticsearch.documents
|
|
import core.signals # noqa: F401
|