newapi / app.py
habulaj's picture
Update app.py
3a62be7
raw
history blame
239 Bytes
from fastapi import FastAPI
from routers import profanity # Importa a rota de palavrões
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
# Inclui as rotas de profanity
app.include_router(profanity.router)