chore: simple backend

This commit is contained in:
Данил 2025-02-18 00:09:34 +03:00
parent 7a246c8b92
commit ea723ec645
2 changed files with 42 additions and 0 deletions

9
web-app/routes/home.py Normal file
View file

@ -0,0 +1,9 @@
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')