diff options
| author | Fuwn <[email protected]> | 2023-04-04 09:33:14 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-04-04 09:33:14 +0000 |
| commit | 8998ae16a31525713d66d783a078374fb126d3bb (patch) | |
| tree | b2d1ffd50774960a6297bb88c999d5e9ea8a668f /src/lib.rs | |
| parent | feat(route): native async route support !! (diff) | |
| download | windmark-8998ae16a31525713d66d783a078374fb126d3bb.tar.xz windmark-8998ae16a31525713d66d783a078374fb126d3bb.zip | |
feat(module): async module support
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |