mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
17 lines
302 B
JavaScript
17 lines
302 B
JavaScript
import cliCommandsSchema from '../cli/commands-schema.js'
|
|
|
|
class Metrics {
|
|
constructor(serverless, options) {
|
|
this.serverless = serverless
|
|
this.options = options
|
|
|
|
this.commands = {
|
|
metrics: {
|
|
...cliCommandsSchema.get('metrics'),
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
export default Metrics
|