//! REST client module for Fugle marketdata API
//!
//! This module provides:
//! - Authentication mechanisms (API Key, Bearer Token, SDK Token)
//! - HTTP client with connection pooling via ureq
//! - Error conversion from ureq to MarketDataError
//! - Stock endpoints (intraday, historical)
//! - FutOpt endpoints (futures and options)
// Stock endpoints module
// FutOpt (Futures and Options) endpoints module
// Re-export public types
pub use Auth;
pub use ;
pub use ;
pub use RetryPolicy;
pub use SnapshotClient;