UNPKG

sls3-legacy

Version:

SLS3 Legacy - A fork of Serverless Framework v3

18 lines (13 loc) 294 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;