1
2
3
4
5
6
7
8
9
10
//! Enables remote command execution for minecraft servers.
//! See the documentation for [`RconCLient`] for more information.

mod client;
mod packet;

pub use client::RconClient;

const MAX_LEN_CLIENTBOUND: usize = 4096;
const MAX_LEN_SERVERBOUND: usize = 1446;