move voice states to global

This commit is contained in:
Zomatree
2024-04-09 22:36:48 +01:00
parent ad0dcad497
commit ae87bc0b67
6 changed files with 62 additions and 60 deletions

View File

@@ -270,6 +270,13 @@ auto_derived!(
/// Username and discriminator combo separated by #
pub username: String,
}
/// Voice State information for a user
pub struct UserVoiceState {
pub id: String
// TODO - muted, etc
}
);
pub trait CheckRelationship {