diff options
| author | Fuwn <[email protected]> | 2023-05-05 01:33:55 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-05-05 01:33:55 +0000 |
| commit | d66da17c17239408f2ddbc2794621e2d947056a3 (patch) | |
| tree | e448da50c46c429f6ca672aa070577766fffc9bc /src/lib.rs | |
| parent | docs(rossweisse): revert to implementation (diff) | |
| download | windmark-d66da17c17239408f2ddbc2794621e2d947056a3.tar.xz windmark-d66da17c17239408f2ddbc2794621e2d947056a3.zip | |
feat(windmark): prelude feature flag
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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; |