mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
16 lines
265 B
Python
16 lines
265 B
Python
import time
|
|
import schedule
|
|
|
|
from app.crons.mixes import Mixes
|
|
from app.utils.threading import background
|
|
|
|
|
|
@background
|
|
def start_cron_jobs():
|
|
"""
|
|
This is the function that triggers the cron jobs.
|
|
"""
|
|
Mixes().run()
|
|
|
|
# schedule.run_pending()
|