rusty_feeder/exchange/upbit/mod.rs
1//! Upbit exchange provider implementation
2//!
3//! This module provides integration with Upbit, a major Korean cryptocurrency exchange.
4
5/// Authentication utilities for Upbit API
6pub mod auth;
7/// Market data types and parsers
8pub mod data;
9/// Feeder implementation for processing Upbit market data
10pub mod feeder;
11/// WebSocket message types and handlers
12pub mod message;
13/// Provider implementation for Upbit WebSocket connections
14pub mod provider;
15/// Upbit-specific types and structures
16pub mod types;
17
18// Re-export the main components
19pub use data::prelude::*;
20pub use provider::UpbitProvider;