use serde::Deserialize;
#[derive(Deserialize, Debug)]
pub struct Response {
pub currency: String,
pub balance: f64,
}
impl std::fmt::Display for Response {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "{} {}", self.currency, self.balance)
}
}