youtube-channel-manager/YtManagerApp/appmain.py

12 lines
307 B
Python
Raw Normal View History

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