volo_http/utils/cookie/
mod.rs

1//! Cookie utilities of Volo-HTTP.
2//!
3//! [`CookieJar`] currently only supports the server side.
4
5mod jar;
6mod store;
7
8pub use cookie::{Cookie, time::Duration};
9pub use jar::CookieJar;
10#[cfg(feature = "client")]
11pub(crate) use store::CookieStore;