update structure

This commit is contained in:
BryantHe
2023-06-05 18:20:43 +08:00
parent 528ee09f8c
commit c9c55f620b
12 changed files with 1 additions and 1 deletions

View File

View File

@@ -0,0 +1,13 @@
from rocketry import Rocketry
from rocketry.conds import daily
app = Rocketry()
@app.task(daily)
def do_daily():
print('日常任务')
if __name__ == '__main__':
app.run()