rusty_feeder/exchange/bithumb/mod.rs
1//! Bithumb exchange provider implementation
2//!
3//! This module provides integration with Bithumb, a major Korean cryptocurrency exchange.
4
5/// Authentication utilities for Bithumb API
6pub mod auth;
7/// Market data types and parsers
8pub mod data;
9/// Feeder implementation for processing Bithumb market data
10pub mod feeder;
11/// Provider implementation for Bithumb WebSocket connections
12pub mod provider;
13/// Bithumb-specific types and structures
14pub mod types;
15
16pub use feeder::BithumbFeeder;
17pub use provider::BithumbProvider;