mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 10:45:27 +00:00
10 lines
287 B
Python
10 lines
287 B
Python
from django.apps import AppConfig
|
|
|
|
class EpgConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.epg'
|
|
verbose_name = "EPG Management"
|
|
|
|
def ready(self):
|
|
# Import signals to ensure they get registered
|
|
import apps.epg.signals
|