mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-02-13 15:37:33 +08:00
20 lines
249 B
Python
20 lines
249 B
Python
from command import Command
|
|
|
|
|
|
def init_command():
|
|
"""
|
|
初始化命令
|
|
"""
|
|
Command()
|
|
|
|
def stop_command():
|
|
"""
|
|
停止命令
|
|
"""
|
|
pass
|
|
|
|
def restart_command():
|
|
"""
|
|
重启命令
|
|
"""
|
|
Command().init_commands() |