lib.itmens/sync/apps.py
2021-09-15 06:19:30 -04:00

11 lines
No EOL
255 B
Python

from django.apps import AppConfig
from django.conf import settings
class SyncConfig(AppConfig):
name = 'sync'
def ready(self):
from sync.jobs import sync_task_manager
if settings.START_SYNC:
sync_task_manager.start()