All checks were successful
Auto Maintenance Cycle / pre-commit Autoupdate (push) Successful in 40s
Reviewed-on: #14 Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de> Co-committed-by: Philipp Horstenkamp <philipp@horstenkamp.de>
20 lines
300 B
JavaScript
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
|