UNPKG

@zambelz/zhc

Version:
22 lines 657 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const cmd_1 = require("../../utils/cmd"); const profileManagement_1 = require("./profileManagement"); exports.default = (0, cmd_1.createCommand)({ command: "profile", description: "Profile Management", options: { "a:add": "Add new profile", "r:remove": "Remove profile" }, }, (options) => { if (options.add) { (0, profileManagement_1.createNewProfile)(options); return; } if (options.remove) { (0, profileManagement_1.removeRegisteredProfile)(options); return; } }); //# sourceMappingURL=index.js.map