pub mod protocol_model;
pub mod logic;
use reactive_messaging::prelude::{ConstConfig, SocketOptions};
pub const NETWORK_CONFIG: ConstConfig = ConstConfig {
receiver_max_msg_size: 1024,
sender_max_msg_size: 1024,
receiver_channel_size: 32,
sender_channel_size: 32,
socket_options: SocketOptions {
hops_to_live: None, linger_millis: None, no_delay: Some(true), },
..ConstConfig::default()
};