mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
16 lines
329 B
JavaScript
16 lines
329 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,
|
|
},
|
|
};
|
|
}
|
|
};
|