UNPKG

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