real_state_api / main.py
sanbatte's picture
sube api a hf spaces
aa8ade0
raw
history blame contribute delete
262 Bytes
from fastapi import FastAPI
from app.routes import prediction
from app.routes import home
app = FastAPI()
app.include_router(
home.router,
tags=["home"],
)
app.include_router(
prediction.router,
prefix="/predict",
tags=["prediction"],
)