File size: 262 Bytes
aa8ade0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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"],
)