UNPKG

serverless

Version:

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

19 lines (14 loc) 326 B
'use strict'; const cliCommandsSchema = require('../cli/commands-schema'); class Metrics { constructor(serverless, options) { this.serverless = serverless; this.options = options; this.commands = { metrics: { ...cliCommandsSchema.get('metrics'), }, }; } } module.exports = Metrics;