make Uri in http::header private

This commit is contained in:
Keith Cirkel 2024-08-19 14:07:36 +01:00
parent b66866d2d1
commit f96a21f1fa
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ use std::fmt;
// - the few typed headers from actix-http
// - header parsing utils
pub use actix_http::header::*;
pub use actix_http::Uri;
use actix_http::Uri;
use bytes::{Bytes, BytesMut};
mod accept;