aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-04-04 09:33:14 +0000
committerFuwn <[email protected]>2023-04-04 09:33:14 +0000
commita6a61d5be2d508caf145e7d33fcbbd173fa8a356 (patch)
treeb2d1ffd50774960a6297bb88c999d5e9ea8a668f /src/lib.rs
parentfeat(route): native async route support !! (diff)
downloadwindmark-a6a61d5be2d508caf145e7d33fcbbd173fa8a356.tar.xz
windmark-a6a61d5be2d508caf145e7d33fcbbd173fa8a356.zip
feat(module): async module support
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 7d4a80b..fd31430 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -40,7 +40,7 @@ pub mod utilities;
#[macro_use]
extern crate log;
-pub use module::Module;
+pub use module::{AsyncModule, Module};
pub use response::Response;
pub use router::Router;
pub use tokio::main;