from fastapi import APIRouter home_router = APIRouter() @home_router.get( '/healthcheck' ) async def healthcheck(): return {"healthy": True}