Philipp Horstenkamp ff32b18cc4
Some checks failed
Auto Maintenance Cycle / pre-commit Autoupdate (push) Failing after 34s
Adding the rest back in.
2023-11-19 03:47:39 +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