13 lines
369 B
TypeScript
13 lines
369 B
TypeScript
import type { Command } from 'commander';
|
|
|
|
export function registerSessionsCommand(program: Command): void {
|
|
program
|
|
.command('sessions')
|
|
.description('List active sessions')
|
|
.option('-c, --config <path>', 'Config file path')
|
|
.action(async (_opts: { config?: string }) => {
|
|
console.error('Not yet implemented');
|
|
process.exit(1);
|
|
});
|
|
}
|