cleanup mods

This commit is contained in:
Nikolay Kim 2020-09-21 09:21:59 +06:00
parent 21803f9e2f
commit 98378cab0d
6 changed files with 21 additions and 11 deletions

View file

@ -1,5 +1,7 @@
# Changes
## [0.1.24] - Unreleased
* Drop deprecated ntex::framed mod
## [0.1.23] - 2020-09-04

View file

@ -1,2 +0,0 @@
//! Utilities for encoding and decoding frames.
pub use ntex_codec::*;

View file

@ -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::*;
}

View file

@ -1,2 +0,0 @@
//! Resource path matching library.
pub use ntex_router::*;

View file

@ -1,2 +0,0 @@
//! A runtime implementation that runs everything on the current thread.
pub use ntex_rt::*;

View file

@ -1 +0,0 @@
pub use ntex_service::*;