BillWork / app.py
PoseyATX's picture
Update app.py
24d1b2a
raw
history blame
196 Bytes
app.mount("/", StaticFiles(directory="static", html=True), name="static")
@app.get("/")
def index() -> FileResponse:
return FileResponse(path="/app/static/index.html", media_type="text/html")