78c556a 4a8147e 78c556a 4a8147e 78c556a 4a8147e
1
2
3
4
5
6
7
8
9
10
11
from fastapi import FastAPI from routes.hello import router as hello_router app = FastAPI() # Incluindo a rota separada app.include_router(hello_router) @app.get("/") def root(): return {"message": "Welcome to the API!"}