File size: 554 Bytes
8450c71 b856986 8450c71 b856986 8450c71 b856986 8450c71 b856986 8450c71 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
from fastapi import FastAPI
from tortoise import Tortoise, run_async
from .Users.UserRoutes import user_router
from .modelInit import TORTOISE_ORM
app = FastAPI()
@app.on_event("startup")
async def startup_event():
await Tortoise.init(config=TORTOISE_ORM)
await Tortoise.generate_schemas()
@app.get("/")
async def landing_page():
return {"code": 200, "message": "still running"}
app.include_router(user_router)
async def main():
pass
# if __name__ == "__main__":
# main()
# uvicorn.run(app, host="0.0.0.0", port=8000)
|