mirror of
https://github.com/FunnyWolf/agentic-soc-platform.git
synced 2026-08-22 13:12:56 +02:00
11 lines
217 B
Python
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()
|