//! Reddit posts, comments, subreddits, users, and wiki content.
//!
//! The upstream OpenAPI spec does not type its 200 bodies, so the response
//! models in [`models`] were reverse-engineered from live API responses (see
//! `scripts/collect_reddit_samples.py`). The generated [`Reddit`] methods return
//! those typed structs; each tolerates missing/null/unknown fields.
//!
//! See <https://docs.scrapebadger.com/reddit/overview>.
pub use *;
pub use *;
/// Hand-written `*_stream` pagination adapters (methods on [`Reddit`]).