UNPKG

sls3-legacy

Version:

SLS3 Legacy - A fork of Serverless Framework v3

19 lines (14 loc) 344 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;