mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
13 lines
213 B
JavaScript
13 lines
213 B
JavaScript
'use strict';
|
|
|
|
module.exports = class Plugin {
|
|
constructor() {
|
|
this.commands = {
|
|
customCommand: {
|
|
usage: 'Description of custom command',
|
|
configDependent: false,
|
|
},
|
|
};
|
|
}
|
|
};
|