blob: d0364ce4690f1cc6713cad80420a1f0ffcd5076b (
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,
}
|