import { pushPathViaTar } from "../pathOperations/pushPathViaTar.js"; import { pushHarness } from "./pushHarness.js"; /** * Push via tar — delegates to pushHarness with upload plan display. */ export const pushViaTar = async (ctx, pathArg) => { await pushHarness(pushPathViaTar, { showPlan: true, prompt: ctx.prompt })(ctx, pathArg); }; //# sourceMappingURL=pushViaTar.js.map