From 7344f639ac561e162f28b0a97b22244af9b76c00 Mon Sep 17 00:00:00 2001 From: Damian Lesiuk Date: Sat, 12 Sep 2020 14:45:12 +0200 Subject: [PATCH] make normalize public so we can access TrailingSlash enum --- src/middleware/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/middleware/mod.rs b/src/middleware/mod.rs index f0d42cc2a..3a9b39542 100644 --- a/src/middleware/mod.rs +++ b/src/middleware/mod.rs @@ -9,9 +9,9 @@ mod condition; mod defaultheaders; pub mod errhandlers; mod logger; -mod normalize; +pub mod normalize; pub use self::condition::Condition; pub use self::defaultheaders::DefaultHeaders; pub use self::logger::Logger; -pub use self::normalize::NormalizePath; +pub use self::normalize::NormalizePath; \ No newline at end of file