use uuid::Uuid; pub struct WsUserContext { pub user_id: Uuid, } impl WsUserContext { pub fn new(user_id: Uuid) -> Self { Self { user_id } } }