Philipp Horstenkamp 440cf79854
All checks were successful
Auto Maintenance Cycle / pre-commit Autoupdate (push) Successful in 40s
Created a first draft of this action. (#14)
Reviewed-on: #14
Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de>
Co-committed-by: Philipp Horstenkamp <philipp@horstenkamp.de>
2023-11-19 23:21:45 +01:00

20 lines
300 B
JavaScript

'use strict'
const EventEmitter = require('events')
class Dispatcher extends EventEmitter {
dispatch () {
throw new Error('not implemented')
}
close () {
throw new Error('not implemented')
}
destroy () {
throw new Error('not implemented')
}
}
module.exports = Dispatcher