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 Logs { constructor(serverless) { this.serverless = serverless; this.commands = { logs: { ...cliCommandsSchema.get('logs'), }, }; } } module.exports = Logs;