Sam Lai
added application file
b4466be
raw
history blame
244 Bytes
from fastapi import FastAPI
app = FastAPI()
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")