mirror of
https://github.com/Redume/Shirino.git
synced 2025-04-05 12:07:37 +03:00
chore: simple backend
This commit is contained in:
parent
7a246c8b92
commit
ea723ec645
2 changed files with 42 additions and 0 deletions
9
web-app/routes/home.py
Normal file
9
web-app/routes/home.py
Normal 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')
|
Loading…
Add table
Add a link
Reference in a new issue