molehh's picture
updated docker file
e92d385
raw
history blame contribute delete
248 Bytes
from fastapi import FastAPI
from routes import homepage_api
from routes import data_visualization_page_api
app = FastAPI()
app.include_router(homepage_api.router,tags=["Home"])
app.include_router(data_visualization_page_api.router,tags=["Data"])