@axway/axway-central-cli
Version:
Manage APIs, services and publish to the Amplify Marketplace
24 lines (23 loc) • 515 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.listCommand = void 0;
var _common = require("./common");
const action = async ({
console
}) => {
try {
const config = await (0, _common.readConfig)();
console.log(config);
} catch (err) {
// report error and rethrow for proper exit code
console.error(err.message);
throw err;
}
};
const listCommand = exports.listCommand = {
action,
desc: 'View Engage CLI settings',
aliases: ['ls', 'view']
};