mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 18:54:58 +00:00
12 lines
338 B
Python
12 lines
338 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class VODConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.vod'
|
|
verbose_name = 'Video on Demand'
|
|
|
|
def ready(self):
|
|
"""Initialize VOD app when Django is ready"""
|
|
# Import models to ensure they're registered
|
|
from . import models
|