1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-08-20 15:45:38 +02:00

add Url type from actix web

This commit is contained in:
Nikolay Kim
2019-02-01 13:25:56 -08:00
parent aa20b304ec
commit cedba24a36
4 changed files with 240 additions and 0 deletions

View File

@@ -31,6 +31,12 @@ impl<T: AsRef<[u8]>> RequestPath for string::String<T> {
}
}
#[cfg(feature = "http")]
mod url;
#[cfg(feature = "http")]
pub use self::url::Url;
#[cfg(feature = "http")]
mod http_support {
use super::RequestPath;