import log from "../../log"; import colors from "chalk"; import {Command} from "commander"; import Utils from "../utils"; const program = new Command("list"); program .description("List all users") .on("--help", Utils.extraHelp) .action(async function () { const ClientManager = (await import("../../clientManager")).default; const users = new ClientManager().getUsers(); if (users === undefined) { // There was an error, already logged return; } if (users.length === 0) { log.info( `There are currently no users. Create one with ${colors.bold( "thelounge add " )}.` ); return; } log.info("Users:"); users.forEach((user, i) => { log.info(`${i + 1}. ${colors.bold(user)}`); }); }); export default program;