1//! Common types used across FastNet modules.
23use uuid::Uuid;
45/// Unique identifier for a peer connection.
6pub type PeerId = Uuid;
78/// Unique identifier for a transfer operation.
9pub type TransferId = Uuid;
1011/// Unique identifier for a session.
12pub type SessionId = Uuid;