1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//! Async Rust client for the MarketSurge GraphQL API.
//!
//! This project is unofficial and is not affiliated with, endorsed by, or
//! sponsored by [MarketSurge](https://marketsurge.investors.com).
//!
//! # Quick start
//!
//! ```no_run
//! use marketsurge_client::{Client, ClientConfig};
//!
//! # fn main() -> marketsurge_client::Result<()> {
//! let config = ClientConfig::default();
//! let client = Client::new(config)?;
//! // Use any endpoint method, e.g. client.chart_market_data(...).await
//! # Ok(())
//! # }
//! ```
//!
//! An agent crate providing higher-level workflows is planned separately.
pub use ;
pub use ;