rusty_feeder/exchange/binance/futures/
mod.rs

1//! Binance Futures market implementation
2//!
3//! This module implements the Provider trait for the Binance Futures market,
4//! allowing for high-performance data acquisition and normalization.
5
6pub mod data;
7pub mod feeder;
8pub mod provider;
9pub mod types;
10
11// Re-export main components
12pub use feeder::BinanceFuturesFeeder;
13pub use provider::BinanceFuturesProvider;