A crate for fetching currency values from dolarhoy.com.
```rust use dolarhoy_core::{client, dolar, error};
type Result
async fn main() -> Result<()> {
let client = client::DolayHoyClient::new();
let result = client.fetch_cotizacion::
match result.precio_compra_venta() {
(compra, None) => println!("{}: {}", result.title(), compra),
(compra, Some(venta)) => println!("{}: {} / {}", result.title(), compra, venta),
}
Ok(())
} ```
Released under the MIT License.
DolarHoy.com ® is a registered trademark. I don't hold any type of relation to the company or its staff.