diff options
author | 0neGal <mail@0negal.com> | 2024-01-20 02:14:18 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2024-01-20 02:14:18 +0100 |
commit | bc34025c7341bdbc9a31e8a16040e7ec6b89fe9b (patch) | |
tree | 9f5db834a3a4a0b1b49199ed2f9234871fec05dd /src/app/js/events.js | |
parent | c03ce1dc5b1e320a94ef6307aa4c32132c5bf33c (diff) | |
download | Viper-bc34025c7341bdbc9a31e8a16040e7ec6b89fe9b.tar.gz Viper-bc34025c7341bdbc9a31e8a16040e7ec6b89fe9b.zip |
added src/app/js/events.js
Diffstat (limited to 'src/app/js/events.js')
-rw-r--r-- | src/app/js/events.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/app/js/events.js b/src/app/js/events.js new file mode 100644 index 0000000..cced4a7 --- /dev/null +++ b/src/app/js/events.js @@ -0,0 +1,3 @@ +const EventEmitter = require("events"); +class Emitter extends EventEmitter {}; +const events = new Emitter(); |