pvanand commited on
Commit
18d9c79
·
verified ·
1 Parent(s): 3275bc2

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -86,7 +86,7 @@ app.mount("/static", StaticFiles(directory="static"), name="static")
86
  # Add a route for serving the HTML file
87
  @app.get("/", response_class=HTMLResponse)
88
  async def serve_resume_optimizer():
89
- with open("static/resume-optimizer.html", "r") as file:
90
  content = file.read()
91
  return HTMLResponse(content=content)
92
 
 
86
  # Add a route for serving the HTML file
87
  @app.get("/", response_class=HTMLResponse)
88
  async def serve_resume_optimizer():
89
+ with open("static/index.html", "r") as file:
90
  content = file.read()
91
  return HTMLResponse(content=content)
92