Skip to main content

mudra_cli/api/
mod.rs

1//! API client modules for currency conversion
2
3pub mod client;
4pub mod exchange_service;
5pub mod types;
6
7// Re-export the main types for easier access
8pub use client::CurrencyClient;
9pub use exchange_service::ExchangeRateService;
10pub use types::{
11    ConversionResponse, ExchangeRateResponse, HistoricalConversionRequest, HistoricalRateResponse,
12    is_valid_currency_code, is_valid_date_format,
13};