diff options
| author | mat <git@matdoes.dev> | 2026-03-28 15:28:47 -0630 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2026-03-28 15:28:47 -0630 |
| commit | ed12c2dd3608588cc5a6c1ee250735bb0414de7f (patch) | |
| tree | 354f60826cb24dab8ec9de3d220ae525e1127138 /azalea/src/lib.rs | |
| parent | 999bde91394f4f3f33f9c6ae9a885bc0da60e1a4 (diff) | |
| download | azalea-drasl-ed12c2dd3608588cc5a6c1ee250735bb0414de7f.tar.xz | |
add StartClientOpts::new_with_appexit_rx
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; |
