Files
loop-etl-rocketchat/lib/rocketchat/end.js
2026-05-13 20:03:28 +03:00

14 lines
222 B
JavaScript

//
// Initialize the child logger for
// the module
//
const log = require('../log').child({
module: 'end'
})
module.exports = function(context) {
log.info('end')
context.rocketchat.close()
context.output.end()
}