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()
|