aboutsummaryrefslogtreecommitdiff
path: root/src/voice/connection_info.rs
blob: 91bee8066e35e59b7d6d9dfda2180945a62ac77b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
use model::{GuildId, UserId};

#[derive(Clone, Debug)]
pub struct ConnectionInfo {
    pub endpoint: String,
    pub guild_id: GuildId,
    pub session_id: String,
    pub token: String,
    pub user_id: UserId,
}