PoseyATX commited on
Commit
24d1b2a
·
1 Parent(s): 2c090ff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ app.mount("/", StaticFiles(directory="static", html=True), name="static")
2
+
3
+ @app.get("/")
4
+ def index() -> FileResponse:
5
+ return FileResponse(path="/app/static/index.html", media_type="text/html")