Blame view

src/observation_manager/apps.py 286 Bytes
3df2d31a   haribo   #3430 : dates are...
1
2
3
4
5
from django.apps import AppConfig


class ObservationManagerConfig(AppConfig):
    name = 'observation_manager'
8e4ab234   haribo   #3485: Creation a...
6
7
8
9
10
11

    def ready(self):
        from observation_manager.agent import ObservationManagerAgent
        self.agent = ObservationManagerAgent()
        self.agent.start()