mirror of
https://github.com/FuzzyGrim/Yamtrack.git
synced 2026-06-28 14:55:58 +00:00
13 lines
293 B
Python
13 lines
293 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class AppConfig(AppConfig):
|
|
"""Default app config."""
|
|
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "app"
|
|
|
|
def ready(self):
|
|
"""Import signals when the app is ready."""
|
|
import app.signals # noqa: F401, PLC0415
|