Dispatcharr/apps/vod/apps.py
2025-08-02 10:42:36 -05:00

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