diff options
| author | mat <git@matdoes.dev> | 2024-10-26 05:29:26 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2024-10-26 05:29:26 +0000 |
| commit | 6b0fe5bf638079d535e70c3c91e78fe35a5d2a2f (patch) | |
| tree | 3b65d2984a0cffbe5acb3d44d7e3b8b145c32f95 /azalea/src/lib.rs | |
| parent | b762575db61cf775d603e11eb2bd27ae13bdc4e9 (diff) | |
| download | azalea-drasl-6b0fe5bf638079d535e70c3c91e78fe35a5d2a2f.tar.xz | |
group imports with rustfmt
Diffstat (limited to 'azalea/src/lib.rs')
| -rw-r--r-- | azalea/src/lib.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/azalea/src/lib.rs b/azalea/src/lib.rs index c78b6ef1..5e412f52 100644 --- a/azalea/src/lib.rs +++ b/azalea/src/lib.rs @@ -34,6 +34,8 @@ pub use azalea_physics as physics; pub use azalea_protocol as protocol; pub use azalea_registry as registry; pub use azalea_world as world; +pub use bevy_app as app; +pub use bevy_ecs as ecs; pub use bot::*; use ecs::component::Component; use futures::{future::BoxFuture, Future}; @@ -42,9 +44,6 @@ use protocol::{resolver::ResolverError, ServerAddress}; use swarm::SwarmBuilder; use thiserror::Error; -pub use bevy_app as app; -pub use bevy_ecs as ecs; - pub type BoxHandleFn<S> = Box<dyn Fn(Client, azalea_client::Event, S) -> BoxFuture<'static, Result<(), anyhow::Error>>>; pub type HandleFn<S, Fut> = fn(Client, azalea_client::Event, S) -> Fut; |
