UNPKG

serverless

Version:

Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more

15 lines (11 loc) 228 B
'use strict'; class Plugin { constructor(serverless, options) { this.serverless = serverless; this.options = options; this.commands = { plugin: { type: 'container' }, }; } } module.exports = Plugin;