serverless/lib/plugins/metrics.js
Austen 158f644cd0
feat: Refactor logging to reduce complexity (#12432)
* chore: Change logger

* chore: continue refactor

* chore: WIP

* chore: Sync
2024-04-17 13:26:31 -07:00

17 lines
307 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;