pub(crate) mod client; pub(crate) mod server; pub(crate) mod packet; pub use server::Server; pub use client::Client; pub(crate) const BINCODE_CONFIG: bincode::config::Configuration = bincode::config::standard() .with_little_endian() .with_variable_int_encoding() .skip_fixed_array_length();