11 lines
179 B
Python
Raw Normal View History

2023-10-10 22:39:23 +02:00
from fastapi import FastAPI
from .routers import users
app = FastAPI()
app.include_router(users.router)
@app.get("/")
async def root():
return {"message": "Hello World !"}