nomad-protocol 0.2.0

NOMAD Protocol - Network-Optimized Mobile Application Datagram. A secure UDP-based state synchronization protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
//! NOMAD Protocol - Server Library
//!
//! High-level API for NOMAD servers.

#[allow(clippy::module_inception)]
mod server;
mod session;

pub use server::*;
pub use session::*;