mirror of
https://github.com/cloudmaker97/Discord-Captcha-Verification.git
synced 2025-12-06 01:48:34 +00:00
11 lines
No EOL
266 B
JavaScript
11 lines
No EOL
266 B
JavaScript
const util = require('util');
|
|
const eventEmitter = require('events').EventEmitter;
|
|
function Event () {
|
|
eventEmitter.call(this);
|
|
}
|
|
util.inherits(Event, eventEmitter);
|
|
const eventBus = new Event();
|
|
module.exports = {
|
|
emitter : Event,
|
|
eventBus : eventBus
|
|
}; |