mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
29 lines
509 B
JavaScript
29 lines
509 B
JavaScript
'use strict';
|
|
|
|
class Remove {
|
|
constructor(serverless) {
|
|
this.serverless = serverless;
|
|
|
|
this.commands = {
|
|
remove: {
|
|
usage: 'Remove resources.',
|
|
lifecycleEvents: [
|
|
'remove',
|
|
],
|
|
options: {
|
|
stage: {
|
|
usage: 'Stage of the service',
|
|
shortcut: 's',
|
|
},
|
|
region: {
|
|
usage: 'Region of the service',
|
|
shortcut: 'r',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = Remove;
|