2024-05-29 11:51:04 -04:00

16 lines
323 B
JavaScript

'use strict'
module.exports = class TestPlugin {
constructor(serverless, options, utils) {
this.serverless = serverless
this.options = options
this.utils = utils
this.commands = {
customCommand: {
usage: 'Description of custom command',
configDependent: false,
},
}
}
}