mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-05-14 07:26:45 +00:00
15 lines
193 B
Python
15 lines
193 B
Python
from scheduler import Scheduler
|
|
|
|
|
|
def init_scheduler():
|
|
"""
|
|
初始化定时器
|
|
"""
|
|
Scheduler()
|
|
|
|
def stop_scheduler():
|
|
"""
|
|
停止定时器
|
|
"""
|
|
Scheduler().stop()
|