mirror of
https://github.com/danbulant/discord.js
synced 2026-05-25 21:12:06 +00:00
18 lines
387 B
JavaScript
18 lines
387 B
JavaScript
'use strict';
|
|
|
|
const ServerChannel = require('./ServerChannel');
|
|
const VoiceChannelDataStore = require('./datastore/VoiceChannelDataStore');
|
|
|
|
class VoiceChannel extends ServerChannel {
|
|
constructor(guild, data) {
|
|
super(guild, data);
|
|
this.store = new VoiceChannelDataStore();
|
|
}
|
|
|
|
setup(data) {
|
|
super.setup(data);
|
|
this.bitrate = data.bitrate;
|
|
}
|
|
}
|
|
|
|
module.exports = VoiceChannel;
|