From d66da17c17239408f2ddbc2794621e2d947056a3 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Fri, 5 May 2023 01:33:55 +0000 Subject: feat(windmark): prelude feature flag --- src/lib.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 567655b..968c9a9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -32,6 +32,8 @@ pub mod context; pub mod handler; pub mod module; +#[cfg(feature = "prelude")] +pub mod prelude; pub mod response; pub mod router; pub mod utilities; @@ -41,8 +43,5 @@ extern crate log; #[cfg(feature = "async-std")] pub use async_std::main; -pub use module::{AsyncModule, Module}; -pub use response::Response; -pub use router::Router; #[cfg(feature = "tokio")] pub use tokio::main; -- cgit v1.2.3