mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-02-09 13:36:55 +08:00
16 lines
182 B
Python
16 lines
182 B
Python
from monitor import Monitor
|
|
|
|
|
|
def init_monitor():
|
|
"""
|
|
初始化监控器
|
|
"""
|
|
Monitor()
|
|
|
|
|
|
def stop_monitor():
|
|
"""
|
|
停止监控器
|
|
"""
|
|
Monitor().stop()
|