mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
cleanup mods
This commit is contained in:
parent
21803f9e2f
commit
98378cab0d
6 changed files with 21 additions and 11 deletions
|
@ -1,5 +1,7 @@
|
|||
# Changes
|
||||
|
||||
## [0.1.24] - Unreleased
|
||||
|
||||
* Drop deprecated ntex::framed mod
|
||||
|
||||
## [0.1.23] - 2020-09-04
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
//! Utilities for encoding and decoding frames.
|
||||
pub use ntex_codec::*;
|
|
@ -30,13 +30,9 @@ extern crate derive_more;
|
|||
pub use ntex_rt_macros::{main, test};
|
||||
|
||||
pub mod channel;
|
||||
pub mod codec;
|
||||
pub mod connect;
|
||||
pub mod http;
|
||||
pub mod router;
|
||||
pub mod rt;
|
||||
pub mod server;
|
||||
pub mod service;
|
||||
pub mod task;
|
||||
pub mod testing;
|
||||
pub mod util;
|
||||
|
@ -44,3 +40,22 @@ pub mod web;
|
|||
pub mod ws;
|
||||
|
||||
pub use self::service::*;
|
||||
|
||||
pub mod codec {
|
||||
//! Utilities for encoding and decoding frames.
|
||||
pub use ntex_codec::*;
|
||||
}
|
||||
|
||||
pub mod router {
|
||||
//! Resource path matching library.
|
||||
pub use ntex_router::*;
|
||||
}
|
||||
|
||||
pub mod rt {
|
||||
//! A runtime implementation that runs everything on the current thread.
|
||||
pub use ntex_rt::*;
|
||||
}
|
||||
|
||||
pub mod service {
|
||||
pub use ntex_service::*;
|
||||
}
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
//! Resource path matching library.
|
||||
pub use ntex_router::*;
|
|
@ -1,2 +0,0 @@
|
|||
//! A runtime implementation that runs everything on the current thread.
|
||||
pub use ntex_rt::*;
|
|
@ -1 +0,0 @@
|
|||
pub use ntex_service::*;
|
Loading…
Add table
Add a link
Reference in a new issue