brokerage_api/lib.rs
1//! A Rust library for interacting with the Schwab API.
2//!
3//! This crate provides a convenient way to authenticate with the Schwab API and access various market data endpoints.
4//!
5//! ## Modules
6//!
7//! - `schwab`: Contains modules for Schwab API authentication and market data access.
8//! - `util`: Provides utility functions used across the library.
9
10pub mod util;
11
12/// Provides modules for interacting with the Schwab API, including authentication and market data.
13pub mod schwab;
14
15pub use schwab::schwab_api::SchwabApi;
16pub use schwab::schwab_auth::SchwabAuth;
17pub use schwab::schwab_streamer::SchwabStreamer;