mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 14:26:07 +08:00
15 lines
320 B
Python
15 lines
320 B
Python
"""
|
|
任务名称
|
|
name: script name
|
|
定时规则
|
|
cron: 1 9 * * *
|
|
"""
|
|
|
|
print("test script")
|
|
print(QLAPI.notify("test script", "test desc"))
|
|
print("test systemNotify")
|
|
print(QLAPI.systemNotify({"title": "test script", "content": "dddd"}))
|
|
print("test getEnvs")
|
|
print(QLAPI.getEnvs({"searchValue": "1"}))
|
|
print("test desc")
|