molehh commited on
Commit
cd352f7
·
1 Parent(s): ca86d8f
Files changed (1) hide show
  1. src/backend/main.py +3 -5
src/backend/main.py CHANGED
@@ -7,11 +7,9 @@ app = FastAPI()
7
  app.include_router(homepage_api.router,tags=["Home"])
8
  app.include_router(data_visualization_page_api.router,tags=["Data"])
9
 
10
-
11
-
12
-
13
-
14
-
15
 
16
 
17
 
 
7
  app.include_router(homepage_api.router,tags=["Home"])
8
  app.include_router(data_visualization_page_api.router,tags=["Data"])
9
 
10
+ @app.get("/")
11
+ def root():
12
+ return {f"Home": "Welcome Home"}
 
 
13
 
14
 
15