Skip to main content

rfc/
lib.rs

1//! Library backing the `rfc` CLI. Exposes the API clients, cache layer,
2//! and document models so the binary can stay a thin dispatcher.
3
4pub mod api;
5pub mod cache;
6pub mod commands;
7pub mod models;
8
9pub use api::{DataTrackerClient, DocumentFetcher};
10pub use cache::{CacheManager, CacheMetadata, CachedDocument};
11pub use models::{Document, DocumentType, Format, SearchFilter, SearchResult};