mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
15 lines
228 B
JavaScript
15 lines
228 B
JavaScript
'use strict';
|
|
|
|
class Plugin {
|
|
constructor(serverless, options) {
|
|
this.serverless = serverless;
|
|
this.options = options;
|
|
|
|
this.commands = {
|
|
plugin: { type: 'container' },
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = Plugin;
|