Files
agentic-soc-platform/Core/apps.py
T
2026-04-22 15:34:18 +08:00

11 lines
217 B
Python

from django.apps import AppConfig
class CoreConfig(AppConfig):
name = 'Core'
def ready(self):
from Core.bootstrap import get_or_start_background_services
get_or_start_background_services()