File size: 391 Bytes
d8ca21a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from fastapi import FastAPI
from fastapi.staticfiles import StaticFiles
from fastapi.responses import FileResponse
app = FastAPI()
# /file γιηγγ£γ¬γ―γγͺγ¨γγ¦γγ¦γ³γ
app.mount("/file", StaticFiles(directory="file"), name="file")
# γ«γΌγγ«γ’γ―γ»γΉγγγ /file/index.html γθΏγ
@app.get("/")
def read_root():
return FileResponse("file/index.html")
|