(parent: Command, onMigrate: () => void)
| 10 | import type { Command } from 'commander'; |
| 11 | |
| 12 | export function registerMigrateCommand(parent: Command, onMigrate: () => void): void { |
| 13 | parent |
| 14 | .command('migrate') |
| 15 | .description('Migrate data from a legacy kimi-cli installation into kimi-code.') |
| 16 | .action(() => { |
| 17 | onMigrate(); |
| 18 | }); |
| 19 | } |
no outgoing calls
no test coverage detected