From 8c90c551e37f6ad9ee76a2e8e9c829992e05defb Mon Sep 17 00:00:00 2001 From: Kosh <koshinhegde@gmail.com> Date: Wed, 18 Oct 2023 12:36:58 +0530 Subject: [PATCH] Moved frontend/index.html to frontend/html/index.html Closing #2; Closing #1 --- backend/rest_api.py | 2 +- frontend/{ => html}/index.html | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename frontend/{ => html}/index.html (100%) diff --git a/backend/rest_api.py b/backend/rest_api.py index 1ac4d02..7628ed3 100644 --- a/backend/rest_api.py +++ b/backend/rest_api.py @@ -22,7 +22,7 @@ def handle_first_launched(): @app.get("/") @app.get("/<path:url_path>") -def handle_get(url_path: str = "index.html") -> Response: +def handle_get(url_path: str = "html/index.html") -> Response: """ Handle all get requests that are made. """ diff --git a/frontend/index.html b/frontend/html/index.html similarity index 100% rename from frontend/index.html rename to frontend/html/index.html