ietf-rfc 0.1.0

A CLI tool to search, retrieve, and display IETF RFCs and drafts
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Library backing the `rfc` CLI. Exposes the API clients, cache layer,
//! and document models so the binary can stay a thin dispatcher.

pub mod api;
pub mod cache;
pub mod commands;
pub mod models;

pub use api::{DataTrackerClient, DocumentFetcher};
pub use cache::{CacheManager, CacheMetadata, CachedDocument};
pub use models::{Document, DocumentType, Format, SearchFilter, SearchResult};