from fastapi import APIRouter from .get_cluster_status import router as get_cluster_status_router router = APIRouter(prefix="/cluster") router.include_router(get_cluster_status_router)