mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-05-14 07:26:45 +00:00
15 lines
163 B
Python
15 lines
163 B
Python
from command import Command
|
|
|
|
|
|
def init_command():
|
|
"""
|
|
初始化命令
|
|
"""
|
|
Command()
|
|
|
|
def stop_command():
|
|
"""
|
|
停止命令
|
|
"""
|
|
pass
|