mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:19:31 +08:00
19 lines
300 B
Text
19 lines
300 B
Text
'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
|