mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
21 lines
395 B
JavaScript
21 lines
395 B
JavaScript
import cliCommandsSchema from '../cli/commands-schema.js'
|
|
|
|
class Rollback {
|
|
constructor(serverless) {
|
|
this.serverless = serverless
|
|
|
|
this.commands = {
|
|
rollback: {
|
|
...cliCommandsSchema.get('rollback'),
|
|
commands: {
|
|
function: {
|
|
...cliCommandsSchema.get('rollback function'),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
export default Rollback
|