8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
import { requireSession } from "./helpers.ts"
|
|
|
|
export async function action(branch: string) {
|
|
const { session } = await requireSession(branch)
|
|
|
|
process.stdout.write(session.worktree + "\n")
|
|
}
|