nntp_proxy/cache/
mod.rs

1//! Cache module for NNTP article caching
2//!
3//! This module provides caching functionality for NNTP articles,
4//! allowing the proxy to cache article content and reduce backend load.
5
6mod article;
7mod session;
8
9pub use article::ArticleCache;
10pub use session::CachingSession;