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