This repository has been archived on 2025-02-16. You can view files and clone it, but cannot push or open issues or pull requests.
sidBot/sidBot-js/node_modules/undici/lib/dispatcher.js

20 lines
300 B
JavaScript
Raw Normal View History

'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