Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
PoseyATX
/
BillWork
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
e55b97a
BillWork
/
app.py
PoseyATX
Update app.py
24d1b2a
over 2 years ago
raw
Copy download link
history
blame
Safe
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"
)