13 lines
220 B
Python
Raw Normal View History

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