mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
It's needed to be able to process commands as introduced by plugins without a need of processing Serverless instance
18 lines
277 B
JavaScript
18 lines
277 B
JavaScript
'use strict';
|
|
|
|
const cliCommandsSchema = require('../cli/commands-schema');
|
|
|
|
class Logs {
|
|
constructor(serverless) {
|
|
this.serverless = serverless;
|
|
|
|
this.commands = {
|
|
logs: {
|
|
...cliCommandsSchema.get('logs'),
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = Logs;
|