mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
16 lines
258 B
JavaScript
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;
|