import type { Command } from 'commander'; export function registerSendCommand(program: Command): void { program .command('send ') .description('Send a one-shot message and print the response') .option('-c, --config ', 'Config file path') .action(async (_message: string, _opts: { config?: string }) => { console.error('Not yet implemented'); process.exit(1); }); }