rusty_oms/exchanges/
mod.rs

1//! Exchange implementations module
2//!
3//! This module provides concrete implementations of the Exchange trait
4//! for various cryptocurrency exchanges, as well as a test implementation.
5
6pub use crate::execution_engine::Exchange;
7
8mod binance;
9mod bithumb;
10mod bybit;
11mod test;
12mod upbit;
13
14pub use binance::BinanceExchange;
15pub use bithumb::BithumbExchange;
16#[allow(deprecated)]
17pub use bybit::BybitExchange;
18pub use test::TestExchange;
19pub use upbit::UpbitExchange;