mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-12 01:23:31 +01:00
Started basic work on voice
This commit is contained in:
@@ -39,6 +39,7 @@ class InternalClient {
|
||||
this.channels = new Cache();
|
||||
this.servers = new Cache();
|
||||
this.private_channels = new Cache();
|
||||
this.voiceConnections = new Cache();
|
||||
this.resolver = new Resolver(this);
|
||||
}
|
||||
// def createServer
|
||||
|
||||
9
src/Voice/VoiceConnection.js
Normal file
9
src/Voice/VoiceConnection.js
Normal file
@@ -0,0 +1,9 @@
|
||||
"use strict";
|
||||
|
||||
class VoiceConnection{
|
||||
constructor(){
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = VoiceConnection;
|
||||
Reference in New Issue
Block a user