newo
Version:
NEWO CLI: Professional command-line tool with modular architecture for NEWO AI Agent development. Features account migration, integration management, webhook automation, AKB knowledge base, project attributes, sandbox testing, IDN-based file management, r
13 lines • 493 B
JavaScript
/**
* List customers command handler
*/
import { listCustomers } from '../../customerAsync.js';
export function handleListCustomersCommand(customerConfig) {
const customers = listCustomers(customerConfig);
console.log('Available customers:');
for (const customerIdn of customers) {
const isDefault = customerConfig.defaultCustomer === customerIdn;
console.log(` ${customerIdn}${isDefault ? ' (default)' : ''}`);
}
}
//# sourceMappingURL=list-customers.js.map