1 2 3 4 5 6 7 8 9 10 11 12 13
//! Reddit Insights Rust SDK //! //! Official Rust SDK for the Reddit Insights API. //! Analyze Reddit conversations with AI-powered semantic search. mod client; mod error; mod types; pub use client::RedditInsightsClient; pub use error::{Error, Result}; pub use types::*;