diff options
| author | mat <github@matdoes.dev> | 2022-06-18 16:54:49 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-06-18 16:54:49 -0500 |
| commit | fc3151f89db1cf018bfebebb8f102e20911e64d3 (patch) | |
| tree | e04047dbcbfd9d9e8c6b7a98658ccdb4802eeabd /azalea-client/src/lib.rs | |
| parent | e32b8fabb78a86e073c7bb3270b1bc89a532350a (diff) | |
| download | azalea-drasl-fc3151f89db1cf018bfebebb8f102e20911e64d3.tar.xz | |
account.rs and client.rs
Diffstat (limited to 'azalea-client/src/lib.rs')
| -rwxr-xr-x | azalea-client/src/lib.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/azalea-client/src/lib.rs b/azalea-client/src/lib.rs index db935897..867f05a1 100755 --- a/azalea-client/src/lib.rs +++ b/azalea-client/src/lib.rs @@ -1,10 +1,12 @@ //! Significantly abstract azalea-protocol so it's actually useable for bots. -mod connect; +mod account; +mod client; pub mod ping; mod player; -pub use connect::{Account, Client, Event}; +pub use account::Account; +pub use client::{Client, Event}; pub use player::Player; #[cfg(test)] |
