Files
nextjs-python-web-template/pkgs/clan-cli/clan_cli/webui/routers/root.py
Jörg Thalheim acc648fc6b integrate webserver into cli
integrate webserver into cli
2023-08-24 11:31:41 +02:00

10 lines
225 B
Python

from fastapi import APIRouter, Response
router = APIRouter()
@router.get("/")
async def root() -> Response:
body = "<html><body><h1>Welcome</h1></body></html>"
return Response(content=body, media_type="text/html")