mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-18 00:55:50 +00:00
14 lines
412 B
Python
14 lines
412 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class MediaLibraryConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "apps.media_library"
|
|
verbose_name = "Media Library"
|
|
|
|
def ready(self):
|
|
# Import signals when needed without causing circular dependencies
|
|
try:
|
|
import apps.media_library.signals # noqa: F401
|
|
except ImportError:
|
|
pass
|