(parent: Command)
| 11 | import { runLoginFlow } from './login-flow'; |
| 12 | |
| 13 | export function registerLoginCommand(parent: Command): void { |
| 14 | parent |
| 15 | .command('login') |
| 16 | .description('Authenticate with Kimi Code CLI via the device-code flow.') |
| 17 | .action(async () => { |
| 18 | await runLoginFlow(); |
| 19 | }); |
| 20 | } |
no test coverage detected