diff options
Diffstat (limited to 'azalea/src/lib.rs')
| -rw-r--r-- | azalea/src/lib.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/azalea/src/lib.rs b/azalea/src/lib.rs index 1ce7e5e6..3be74b9e 100644 --- a/azalea/src/lib.rs +++ b/azalea/src/lib.rs @@ -56,7 +56,11 @@ pub use builder::ClientBuilder; use futures::future::BoxFuture; pub use join_opts::JoinOpts; -pub use crate::{client_impl::Client, entity_ref::EntityRef, events::Event}; +pub use crate::{ + client_impl::{Client, StartClientOpts}, + entity_ref::EntityRef, + events::Event, +}; pub type BoxHandleFn<S, R> = Box<dyn Fn(Client, Event, S) -> BoxFuture<'static, R> + Send>; pub type HandleFn<S, Fut> = fn(Client, Event, S) -> Fut; |
