aboutsummaryrefslogtreecommitdiff
path: root/minecraft-client/src/lib.rs
blob: d4ceebde0960c248984bc900b9d1a61661f49e2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Significantly abstract minecraft-protocol so it's actually useable for bots.

pub mod connect;
pub mod ping;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        let result = 2 + 2;
        assert_eq!(result, 4);
    }
}