9 lines
147 B
Python
9 lines
147 B
Python
import asyncio
|
|
|
|
|
|
def register(app):
|
|
@app.on_event("startup")
|
|
async def start_scheduler():
|
|
#create your scheduler here
|
|
pass
|