add models

This commit is contained in:
2023-10-10 22:39:23 +02:00
parent 524b4763b7
commit e28520a5fb
5 changed files with 25 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
from fastapi import FastAPI
from .routers import users
app = FastAPI()
app.include_router(users.router)
@app.get("/")
async def root():
return {"message": "Hello World !"}