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

16 lines
258 B
JavaScript

import cliCommandsSchema from '../cli/commands-schema.js';
class Info {
constructor(serverless) {
this.serverless = serverless;
this.commands = {
info: {
...cliCommandsSchema.get('info'),
},
};
}
}
export default Info;