mirror of
https://gitea.bearcatlog.com/Bryant/chassis
synced 2025-01-19 11:10:14 +08:00
13 lines
184 B
Python
13 lines
184 B
Python
|
from rocketry import Rocketry
|
||
|
from rocketry.conds import daily
|
||
|
|
||
|
app = Rocketry()
|
||
|
|
||
|
|
||
|
@app.task(daily)
|
||
|
def do_daily():
|
||
|
print('日常任务')
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
app.run()
|