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
//! # MEXC Connector
//!
//! Exchange connector for MEXC Spot API.
//!
//! ## Architecture
//!
//! - `endpoints` - URL structures and endpoint definitions
//! - `auth` - HMAC-SHA256 signature implementation
//! - `parser` - Response parsing to internal types
//! - `connector` - Trait implementations (MarketData, Trading, Account)
//! - `websocket` - WebSocket connector implementation
//!
//! ## Usage
//!
//! ```ignore
//! use connectors_v5::exchanges::mexc::MexcConnector;
//! use connectors_v5::core::types::{Symbol, AccountType};
//! use connectors_v5::core::traits::MarketData;
//!
//! // Public API
//! let connector = MexcConnector::public().await?;
//! let ticker = connector.get_ticker(&Symbol::new("BTC", "USDT"), AccountType::Spot).await?;
//!
//! // Private API
//! let credentials = Credentials::new("api_key", "api_secret");
//! let connector = MexcConnector::new(Some(credentials)).await?;
//! let balance = connector.get_balance(AccountType::Spot).await?;
//! ```
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;