mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-02-03 02:25:32 +08:00
- 修复了订阅文件信息显示问题 - 修复了默认通知模板格式中季号的显示问题 - 修复了原始语言图片刮削的问题 - 修复了馒头新版标签无法识别的问题 - 优化了联邦插件API的注册
23 lines
256 B
Python
23 lines
256 B
Python
from app.command import Command
|
|
|
|
|
|
def init_command():
|
|
"""
|
|
初始化命令
|
|
"""
|
|
Command()
|
|
|
|
|
|
def stop_command():
|
|
"""
|
|
停止命令
|
|
"""
|
|
pass
|
|
|
|
|
|
def restart_command():
|
|
"""
|
|
重启命令
|
|
"""
|
|
Command().init_commands()
|