9 lines
No EOL
186 B
Python
9 lines
No EOL
186 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class SyncConfig(AppConfig):
|
|
name = 'sync'
|
|
|
|
def ready(self):
|
|
from sync.jobs import sync_task_manager
|
|
sync_task_manager.start() |