mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
13 lines
195 B
Python
13 lines
195 B
Python
import time
|
|
import schedule
|
|
|
|
from app.crons.mixes import Mixes
|
|
from app.utils.threading import background
|
|
|
|
|
|
@background
|
|
def start_cron_jobs():
|
|
Mixes().run()
|
|
|
|
# schedule.run_pending()
|