mirror of
https://github.com/danbulant/discord.js
synced 2026-06-18 06:01:03 +00:00
11 lines
No EOL
214 B
JavaScript
11 lines
No EOL
214 B
JavaScript
"use strict";
|
|
|
|
var ServerChannel = require("./ServerChannel.js");
|
|
|
|
class VoiceChannel extends ServerChannel {
|
|
constructor(data, client, server) {
|
|
super(data, client, server);
|
|
}
|
|
}
|
|
|
|
module.exports = VoiceChannel; |