sls3-legacy
Version:
SLS3 Legacy - A fork of Serverless Framework v3
23 lines (18 loc) • 440 B
JavaScript
;
const cliCommandsSchema = require('../cli/commands-schema');
class Rollback {
constructor(serverless) {
this.serverless = serverless;
this.commands = {
rollback: {
...cliCommandsSchema.get('rollback'),
commands: {
function: {
...cliCommandsSchema.get('rollback function'),
},
},
},
};
}
}
module.exports = Rollback;