mirror of
https://github.com/danbulant/discord.js
synced 2026-05-26 21:42:05 +00:00
9 lines
190 B
JavaScript
9 lines
190 B
JavaScript
"use strict";
|
|
|
|
import ServerChannel from "./ServerChannel";
|
|
|
|
export default class VoiceChannel extends ServerChannel{
|
|
constructor(data, client, server){
|
|
super(data, client, server);
|
|
}
|
|
}
|