chore: break up command handlers

This commit is contained in:
Joe Fleming
2026-03-13 14:47:53 -06:00
parent 7e28a09345
commit 4f54c9837f
5 changed files with 239 additions and 170 deletions

4
src/cli/types.ts Normal file
View File

@@ -0,0 +1,4 @@
import type { Command } from 'commander';
import type { Config } from '../config/types.ts';
export type CommandHandler = (program: Command, config: Config, workspace: string) => void;