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.
56mod article;
7mod session;
89pub use article::ArticleCache;
10pub use session::CachingSession;