http_constant/
lib.rs

1pub(crate) mod constant;
2
3pub use constant::{
4    common::*, content_type_value::*, file_extension::*, header_key::*, header_value::*,
5    http_version::*, method::*, protocol::*,
6};
7
8pub(crate) use std::{
9    net::{Ipv4Addr, SocketAddr, SocketAddrV4},
10    time::Duration,
11};