feat: support multiple voice nodes

This commit is contained in:
Zomatree
2025-02-17 01:39:00 +00:00
parent 060b4c43f4
commit 367ac887f4
20 changed files with 209 additions and 83 deletions

View File

@@ -315,7 +315,14 @@ auto_derived!(
pub struct ChannelVoiceState {
pub id: String,
/// The states of the users who are connected to the channel
pub participants: Vec<UserVoiceState>
pub participants: Vec<UserVoiceState>,
/// The node's node which the channel is currently using
pub node: String
}
/// Join a voice channel
pub struct DataJoinCall {
pub node: String
}
);