mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 10:45:27 +00:00
11 lines
289 B
Python
11 lines
289 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'
|
|
label = 'media_library'
|
|
|
|
def ready(self):
|
|
import apps.media_library.signals
|