from fastapi import APIRouter router = APIRouter(tags=["App"]) @router.get("/health") def health_v1(): return "Healthy" @router.get("/test") def test(): return "test"