1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-09-02 01:31:57 +02:00

move NormalizePath type to separate module

This commit is contained in:
Nikolay Kim
2018-03-29 11:39:21 -07:00
parent f5636f321b
commit dfd8f1058e
5 changed files with 329 additions and 327 deletions

View File

@@ -126,6 +126,7 @@ pub mod fs;
pub mod ws;
pub mod error;
pub mod header;
pub mod helpers;
pub mod httpcodes;
pub mod multipart;
pub mod middleware;
@@ -157,12 +158,6 @@ pub(crate) const HAS_TLS: bool = true;
#[cfg(not(feature="tls"))]
pub(crate) const HAS_TLS: bool = false;
pub mod helpers {
//! Various helpers
pub use handler::{NormalizePath};
}
pub mod dev {
//! The `actix-web` prelude for library developers
//!