mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
13 lines
207 B
JavaScript
13 lines
207 B
JavaScript
class Plugin {
|
|
constructor(serverless, options) {
|
|
this.serverless = serverless
|
|
this.options = options
|
|
|
|
this.commands = {
|
|
plugin: { type: 'container' },
|
|
}
|
|
}
|
|
}
|
|
|
|
export default Plugin
|