Files
gitks/service/im/session.rs
T
2026-06-07 11:30:56 +08:00

13 lines
171 B
Rust

use uuid::Uuid;
#[derive(Debug, Clone)]
pub struct ImSession {
pub user: Uuid,
}
impl ImSession {
pub fn new(user: Uuid) -> Self {
Self { user }
}
}