File size: 399 Bytes
1c1e321 5dd9398 1c1e321 5dd9398 1366c85 1c1e321 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
from fastapi import FastAPI, BackgroundTasks
from .Editor.editorRoutes import videditor_router
from App import bot
app = FastAPI()
# @app.on_event("startup")
# async def startup_event():
# await bot.start()
# @app.on_event("shutdown")
# async def shutdown_event():
# await bot.stop()
@app.get("/")
def read_root():
return {"Hello": "World"}
app.include_router(videditor_router)
|