1import { getKlusterCtx } from "./ctxF/klusterCtxF.mts"2import { read2Resource } from './read2ResourceF.mts'3import type { KubeResource } from './ctxF/klusterCtxF.mts'5export const readKlustResource = async (resource: KubeResource) => {6 const {cluster_name} = getKlusterCtx()7 return await read2Resource({resource, cluster_name})8}