mudra-cli 0.1.0

A robust, high-performance currency converter with caching and CLI interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! API client modules for currency conversion

pub mod client;
pub mod exchange_service;
pub mod types;

// Re-export the main types for easier access
pub use client::CurrencyClient;
pub use exchange_service::ExchangeRateService;
pub use types::{
    ConversionResponse, ExchangeRateResponse, HistoricalConversionRequest, HistoricalRateResponse,
    is_valid_currency_code, is_valid_date_format,
};