Philipp Muens bd4ca61eb0 Remove nested "remove resources" command
Remove the nesting so that a single "serverless remove" can be use to remove
the service. This aligns with the code pattern which is already implemented.
2016-06-02 21:24:21 +02:00

19 lines
273 B
JavaScript

'use strict';
class Remove {
constructor(serverless) {
this.serverless = serverless;
this.commands = {
remove: {
usage: 'Remove resources.',
lifecycleEvents: [
'remove',
],
},
};
}
}
module.exports = Remove;