discord.js/src/Voice/VoiceConnection.js
2015-11-06 21:36:58 +00:00

18 lines
No EOL
397 B
JavaScript

"use strict";
var WebSocket = require("ws");
var dgram = require("dgram");
class VoiceConnection{
constructor(channel, client, session, token, server, endpoint){
this.voiceChannel = channel;
this.client = client;
this.session = session;
this.token = token;
this.server = server;
this.endpoint = endpoint;
console.log("I was instantiated!");
}
}
module.exports = VoiceConnection;