ig_client/application/interfaces/mod.rs
1/// Account service interface
2pub mod account;
3/// Indicative costs and charges service interface
4pub mod costs;
5/// Listener interface for streaming data
6pub mod listener;
7/// Market service interface
8pub mod market;
9/// Operations/application service interface
10pub mod operations;
11/// Order service interface
12pub mod order;
13/// Client sentiment service interface
14pub mod sentiment;
15/// Watchlist service interface
16pub mod watchlist;