Shirino/web-app/routes/home.py
2025-02-18 00:09:34 +03:00

9 lines
247 B
Python

from fastapi import APIRouter, Request
from starlette.responses import FileResponse, HTMLResponse
router = APIRouter()
@router.get('/', response_class=HTMLResponse)
async def home(req: Request):
return FileResponse('./web/html/index.html')