finance_query_core/client/mod.rs
1//! Yahoo Finance client module.
2//!
3//! This module provides the HTTP client components for interacting with
4//! Yahoo Finance APIs, including authentication management and error handling.
5
6pub mod error;
7pub mod fetch_client;
8pub mod scraper;
9pub mod yahoo_auth;
10pub mod yahoo_client;
11
12// Re-export types for convenience
13pub use error::YahooError;
14pub use fetch_client::FetchClient;
15pub use yahoo_auth::YahooAuthManager;
16pub use yahoo_client::YahooFinanceClient;