Rim 073cff8914 initial commit
migrate files over from github
2025-03-14 07:53:23 -04: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