diff --git a/youmubot-prelude/src/lib.rs b/youmubot-prelude/src/lib.rs index ed68aed..1efc063 100644 --- a/youmubot-prelude/src/lib.rs +++ b/youmubot-prelude/src/lib.rs @@ -18,6 +18,9 @@ pub use async_trait::async_trait; /// Re-export the anyhow errors pub use anyhow::{Error, Result}; +/// Re-export useful future and stream utils +pub use futures_util::{future, stream, FutureExt, StreamExt, TryFutureExt, TryStreamExt}; + /// The global app data. pub type AppData = Arc>;