claude-code-best/packages/acp-link/src/cli/context.ts
2026-05-01 21:39:30 +08:00

10 lines
187 B
TypeScript

import type { CommandContext } from '@stricli/core'
export interface LocalContext extends CommandContext {}
export function buildContext(): LocalContext {
return {
process,
}
}