UNPKG

serverless

Version:

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

18 lines (13 loc) 277 B
'use strict'; const cliCommandsSchema = require('../cli/commands-schema'); class Info { constructor(serverless) { this.serverless = serverless; this.commands = { info: { ...cliCommandsSchema.get('info'), }, }; } } module.exports = Info;