2021-03-16 09:34:33 +01:00

19 lines
312 B
JavaScript

'use strict';
const cliCommandsSchema = require('../cli/commands-schema');
class Logs {
constructor(serverless) {
this.serverless = serverless;
this.commands = {
logs: {
...cliCommandsSchema.get('logs'),
lifecycleEvents: ['logs'],
},
};
}
}
module.exports = Logs;