diff options
| author | mat <github@matdoes.dev> | 2021-12-13 00:07:21 -0600 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2021-12-13 00:07:21 -0600 |
| commit | c96ae8fce4e53ea9fad111ac7f479f2fa33ef859 (patch) | |
| tree | 2d35061fa712464b225317f56a806d0dd269ca82 /minecraft-client/src/lib.rs | |
| parent | 2c3bf3b79e133acd01580144771a7cf238ecc4ee (diff) | |
| download | azalea-drasl-c96ae8fce4e53ea9fad111ac7f479f2fa33ef859.tar.xz | |
start implementing joining servers
Diffstat (limited to 'minecraft-client/src/lib.rs')
| -rw-r--r-- | minecraft-client/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/minecraft-client/src/lib.rs b/minecraft-client/src/lib.rs index 1fc97709..d4ceebde 100644 --- a/minecraft-client/src/lib.rs +++ b/minecraft-client/src/lib.rs @@ -1,3 +1,6 @@ +//! Significantly abstract minecraft-protocol so it's actually useable for bots. + +pub mod connect; pub mod ping; #[cfg(test)] |
