aboutsummaryrefslogtreecommitdiff
path: root/src/voice/connection_info.rs
blob: 29e08befb3001d54f9cd986eb02351e05f9525b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
use model::id::{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,
}