from fastapi import APIRouter


router = APIRouter(prefix="/api")


@router.get("/status")
def status():
    return {
        "app": {{ project_name_literal }},
        "public": "Static app shell served by FastAPI app.frontend()",
        "backend": "FastAPI JSON routes",
        "html": "Server-rendered HTML generated with htpy components",
    }
