1import { klusterCtx } from "../../k8sF/ctxF/klusterCtxF.mts"2import { appCfgCtx } from "../../k8sF/ctxF/appCfgCtxF.mts"3import { mcbackup } from "./actionsF.mts"5export const zhongMcBackup = (klusterCfg: import('../../k8sF/ctxF/klusterCtxF.mts').KlusterCfg) => ({6 name: 'mcbackup',7 intervalSec: 60 * 60 * 24,8 runFnc: async (lastRunData: any) => {9 return await klusterCtx.run(klusterCfg, async () => {10 appCfgCtx.enterWith({name: 'minecraft'})12 })13 }14})