Files
romm/backend/scheduler.py
2024-03-26 16:49:02 -04:00

15 lines
397 B
Python

from logger.logger import log
from tasks.scan_library import scan_library_task
from tasks.update_switch_titledb import update_switch_titledb_task
from tasks.tasks import tasks_scheduler
if __name__ == "__main__":
# Initialize the tasks
scan_library_task.init()
update_switch_titledb_task.init()
log.info("Starting scheduler")
# Start the scheduler
tasks_scheduler.run()