ytsm/app/YtManagerApp/appmain.py

12 lines
321 B
Python
Raw Normal View History

2018-10-13 23:01:45 +03:00
from .appconfig import initialize_app_config
2018-10-11 01:43:50 +03:00
from .scheduler import initialize_scheduler
from .management.jobs.synchronize import schedule_synchronize_global
2018-10-11 01:43:50 +03:00
import logging
def main():
2018-10-13 23:01:45 +03:00
initialize_app_config()
2018-10-11 01:43:50 +03:00
initialize_scheduler()
schedule_synchronize_global()
2018-10-11 01:43:50 +03:00
logging.info('Initialization complete.')