File size: 237 Bytes
4c6217e 813684b 4c6217e b982dff a66d267 3a62be7 fd746a8 d77179f fa90e33 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from fastapi import FastAPI, Request
from routers import profanity
# Instancia a aplicação FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
# Inclui as rotas
app.include_router(profanity.router) |