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
45
46
47
//! # Upbit Exchange Connector
//!
//! Полная реализация коннектора для Upbit (Korean exchange).
//!
//! ## Структура
//!
//! - `endpoints` - URL'ы и endpoint enum
//! - `auth` - JWT-based подпись запросов
//! - `parser` - Парсинг JSON ответов (REST и WebSocket)
//! - `connector` - UpbitConnector + impl трейтов
//! - `websocket` - WebSocket подключение
//!
//! ## Регионы
//!
//! Upbit operates in multiple regions:
//! - Singapore (sg) - default
//! - Indonesia (id)
//! - Thailand (th)
//!
//! ## Использование
//!
//! ```ignore
//! use connectors_v5::exchanges::upbit::UpbitConnector;
//!
//! // Create connector for Singapore region
//! let connector = UpbitConnector::new(credentials, "sg").await?;
//!
//! // Core методы (из трейтов)
//! let price = connector.get_price(symbol, AccountType::Spot).await?;
//! let order = connector.market_order(symbol, side, qty, AccountType::Spot).await?;
//!
//! // Extended методы (Upbit-специфичные)
//! let trading_pairs = connector.get_trading_pairs().await?;
//! ```
pub use ;
pub use UpbitAuth;
pub use UpbitParser;
pub use UpbitConnector;
pub use UpbitWebSocket;