from fastapi import FastAPI, Request | |
from routers import profanity, translate, textclas # Importa as rotas | |
# Instancia a aplicação FastAPI | |
app = FastAPI() | |
def greet_json(): | |
return {"Hello": "World!"} | |
# Inclui as rotas | |
app.include_router(profanity.router) | |
app.include_router(translate.router) # Inclui a rota adicional | |
app.include_router(textclas.router) |