mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-02-03 02:25:32 +08:00
- 修复了订阅文件信息显示问题 - 修复了默认通知模板格式中季号的显示问题 - 修复了原始语言图片刮削的问题 - 修复了馒头新版标签无法识别的问题 - 优化了联邦插件API的注册
16 lines
186 B
Python
16 lines
186 B
Python
from app.monitor import Monitor
|
|
|
|
|
|
def init_monitor():
|
|
"""
|
|
初始化监控器
|
|
"""
|
|
Monitor()
|
|
|
|
|
|
def stop_monitor():
|
|
"""
|
|
停止监控器
|
|
"""
|
|
Monitor().stop()
|