2023-10-10 22:39:23 +02:00

11 lines
179 B
Python

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