From ffd779d1c796e9b1a5bbf2b3b41723f753ee6cbf Mon Sep 17 00:00:00 2001 From: Bilal Elmoussaoui Date: Tue, 8 Sep 2020 21:53:11 +0200 Subject: [PATCH] export the init function to avoid having to write libhandy::functions::init --- libhandy/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/libhandy/src/lib.rs b/libhandy/src/lib.rs index 9d4beef..b3622da 100644 --- a/libhandy/src/lib.rs +++ b/libhandy/src/lib.rs @@ -49,6 +49,7 @@ pub use prelude::*; mod auto; #[cfg(any(feature = "v0_0_8", feature = "dox"))] mod value_object; +pub use auto::functions::init; pub use auto::*; #[cfg(any(feature = "v0_0_8", feature = "dox"))] pub use value_object::*;