13 lines
391 B
TypeScript
13 lines
391 B
TypeScript
import type { Command } from 'commander';
|
|
|
|
export function registerDoctorCommand(program: Command): void {
|
|
program
|
|
.command('doctor')
|
|
.description('Validate configuration and check system health')
|
|
.option('-c, --config <path>', 'Config file path')
|
|
.action(async (_opts: { config?: string }) => {
|
|
console.error('Not yet implemented');
|
|
process.exit(1);
|
|
});
|
|
}
|