1 2 3 4 5 6 7 8 9
use infinity_bridge_wire::HelloPayload; use tokio::sync::mpsc; use tokio::time::Instant; pub(crate) struct Client { pub tx: mpsc::UnboundedSender<String>, pub hello: Option<HelloPayload>, pub last_seen: Instant, }