mirror of
https://github.com/Redume/Shirino.git
synced 2025-04-03 19:17:36 +03:00
9 lines
247 B
Python
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')
|