sandlot/src/commands/merge.ts

6 lines
125 B
TypeScript

import { mergeAndClose } from "./helpers.ts"
export async function action(branch: string) {
await mergeAndClose(branch)
}