ig_client/application/services/mod.rs
1/// Module containing account service for retrieving account information
2pub mod account_service;
3/// Module containing service interfaces and traits
4pub mod interfaces;
5mod listener;
6/// Module containing market update listener implementation
7/// Module containing market service for retrieving market information
8pub mod market_service;
9/// Module containing order service for creating and managing orders
10pub mod order_service;
11/// Module containing common types used by services
12mod types;
13
14pub use interfaces::account::AccountService;
15pub use interfaces::market::{MarketService, RecentPricesParams};
16pub use interfaces::order::OrderService;
17pub use listener::Listener;
18pub use types::{DBEntry, ListenerResult};