Spaces:
Sleeping
Sleeping
File size: 239 Bytes
5ec879f |
1 2 3 4 5 6 7 8 9 10 11 12 |
from fastapi import FastAPI, Request
from routers import searchterm
# Instancia a aplicação FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
# Inclui as rotas
app.include_router(searchterm.router) |