2016-10-12 08:44:29 +02:00

29 lines
521 B
JavaScript

'use strict';
class Info {
constructor(serverless) {
this.serverless = serverless;
this.commands = {
info: {
usage: 'Display information about the service',
lifecycleEvents: [
'info',
],
options: {
stage: {
usage: 'Stage of the service',
shortcut: 's',
},
region: {
usage: 'Region of the service',
shortcut: 'r',
},
},
},
};
}
}
module.exports = Info;