skp_cache_http/
lib.rs

1pub mod cache_control;
2pub mod response;
3pub mod policy;
4
5pub use cache_control::CacheControl;
6pub use response::CachedResponse;
7pub use policy::HttpCachePolicy;
8
9#[cfg(test)]
10mod tests {
11    use super::*;
12    
13    // Logic is tested in modules
14}