from fastapi import APIRouter

from app.api.routes.public.v1.cluster import router as cluster_v1_router

router = APIRouter(tags=['PUBLIC'])

router.include_router(cluster_v1_router, tags=['cluster'], prefix='/v1/cluster')