1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-04-01 20:36:35 +02:00

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

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;