Mariusz Nowak 6ec463cbe7 fix(CLI): Improve handling of container commands
Allow to run them, and simply show help output if they're run
2021-03-16 09:34:33 +01:00

15 lines
228 B
JavaScript

'use strict';
class Plugin {
constructor(serverless, options) {
this.serverless = serverless;
this.options = options;
this.commands = {
plugin: { type: 'container' },
};
}
}
module.exports = Plugin;