mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-02-08 13:06:16 +08:00
- 修复了订阅文件信息显示问题 - 修复了默认通知模板格式中季号的显示问题 - 修复了原始语言图片刮削的问题 - 修复了馒头新版标签无法识别的问题 - 优化了联邦插件API的注册
30 lines
395 B
Python
30 lines
395 B
Python
from app.scheduler import Scheduler
|
|
|
|
|
|
def init_scheduler():
|
|
"""
|
|
初始化定时器
|
|
"""
|
|
Scheduler()
|
|
|
|
|
|
def stop_scheduler():
|
|
"""
|
|
停止定时器
|
|
"""
|
|
Scheduler().stop()
|
|
|
|
|
|
def restart_scheduler():
|
|
"""
|
|
重启定时器
|
|
"""
|
|
Scheduler().init()
|
|
|
|
|
|
def init_plugin_scheduler():
|
|
"""
|
|
初始化插件定时器
|
|
"""
|
|
Scheduler().init_plugin_jobs()
|