Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
class FunctionsListTemplates extends Command {
async run() {
let { flags, args } = this.parse(FunctionsListTemplates);
flags = normalizeFlags(flags);
const opts = Object.assign({}, flags, args);
return handler(opts, undefined);
}
}
FunctionsListTemplates.description = describe;
FunctionsListTemplates.args = [];
FunctionsListTemplates.flags = Object.assign(
convertYargsOptionsToOclifFlags(cliInfo.options)
);
module.exports = FunctionsListTemplates;