mirror of
https://github.com/Alexander-D-Karpov/akarpov
synced 2025-02-22 21:02:52 +03:00
13 lines
284 B
Python
13 lines
284 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class MusicConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "akarpov.music"
|
|
|
|
def ready(self):
|
|
try:
|
|
import akarpov.music.signals # noqa F401
|
|
except ImportError:
|
|
pass
|