Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
Fix root page handler
Browse files Browse the repository at this point in the history
  • Loading branch information
lemonyte committed Jul 7, 2023
1 parent 18b8231 commit 9b3936a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

@app.get('/', response_class=HTMLResponse)
async def root():
with open('index.html') as file:
with open('static/index.html') as file:
return HTMLResponse(file.read())


Expand Down

0 comments on commit 9b3936a

Please sign in to comment.