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
11
12
//! NOMAD Protocol - Core traits, types, and constants.
//!
//! This module provides the foundational traits and types for the NOMAD protocol.
//! It has minimal dependencies and defines the core abstractions.

mod constants;
mod error;
mod traits;

pub use constants::*;
pub use error::*;
pub use traits::*;