mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-13 01:53:30 +01:00
errory voice
This commit is contained in:
15
src/client/voice/opus/BaseOpusEngine.js
Normal file
15
src/client/voice/opus/BaseOpusEngine.js
Normal file
@@ -0,0 +1,15 @@
|
||||
class BaseOpus {
|
||||
constructor(player) {
|
||||
this.player = player;
|
||||
}
|
||||
|
||||
encode(buffer) {
|
||||
return buffer;
|
||||
}
|
||||
|
||||
decode(buffer) {
|
||||
return buffer;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = BaseOpus;
|
||||
Reference in New Issue
Block a user