1 2 3 4 5 6 7
use crate::dto::raw_market::RawMarket; use std::collections::HashMap; #[derive(Debug)] pub struct RawExchange { pub markets: HashMap<String, RawMarket>, }