Dispatcharr/apps/epg/apps.py
Dispatcharr 8669be5c0a EPG auto import
Set EPG to import channels and channel id's automatically once the EPG is added.
2025-03-19 13:12:48 -05:00

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