import { Command } from 'commander';
import { getCommand } from './get';
import { deleteCommand } from './delete';
import { createCommand } from './create';
import { updateCommand } from './update';
import { addAgentCommand } from './add-agent';
import { listCommand } from './list';
import { addLinkCommand } from './add-link';
import { clearLinksCommand } from './clear-links';

export const portalCommands = new Command('portal')
  .description('Comandos relacionados con portales')
  .addCommand(listCommand)
  .addCommand(getCommand)
  .addCommand(deleteCommand)
  .addCommand(createCommand)
  .addCommand(updateCommand)
  .addCommand(addAgentCommand)
  .addCommand(addLinkCommand)
  .addCommand(clearLinksCommand); 