molehh's picture
modified
cd352f7
raw
history blame
316 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"])
@app.get("/")
def root():
return {f"Home": "Welcome Home"}