mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 10:45:27 +00:00
10 lines
303 B
Python
10 lines
303 B
Python
from django.apps import AppConfig
|
|
from . import ssdp
|
|
|
|
class HdhrConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.hdhr'
|
|
verbose_name = "HDHomeRun Emulation"
|
|
def ready(self):
|
|
# Start SSDP services when the app is ready
|
|
ssdp.start_ssdp()
|