10 lines
222 B
Python
10 lines
222 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ExtensionsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'extensions'
|
|
|
|
def ready(self):
|
|
import extensions.signals # noqa: F401
|