File size: 262 Bytes
a3c4535
2939a15
a3c4535
18a33a3
 
 
a3c4535
 
 
 
 
 
 
2939a15
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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"],
)