Files
2026-05-13 20:03:28 +03:00

13 lines
193 B
JavaScript

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