from fastapi import FastAPI | |
from routers import profanity, other_route # Importa as rotas | |
app = FastAPI() | |
def greet_json(): | |
return {"Hello": "World!"} | |
# Inclui as rotas | |
app.include_router(profanity.router) | |
app.include_router(other_route.router) # Inclui a rota adicional |