1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 01:39:33 +00:00

update changes

This commit is contained in:
Nikolay Kim 2019-04-20 11:18:04 -07:00
parent 01b1350dcc
commit 891f857547
2 changed files with 4 additions and 1 deletions

View file

@ -9,6 +9,8 @@
* Add `.peer_addr()` #744
* Add `NormalizePath` middleware
### Changed
* Rename `RouterConfig` to `ServiceConfig`

View file

@ -6,10 +6,11 @@ pub mod cors;
mod defaultheaders;
pub mod errhandlers;
mod logger;
pub mod normalize;
mod normalize;
pub use self::defaultheaders::DefaultHeaders;
pub use self::logger::Logger;
pub use self::normalize::NormalizePath;
#[cfg(feature = "secure-cookies")]
pub mod identity;