logistics_api/dhl/
dhl.rs

1use super::tracking::client::TrackingApi;
2
3pub struct DHL {
4    pub tracking: TrackingApi,
5}
6
7impl DHL {
8    pub fn new(api_key: &'static str) -> Self {
9        return DHL {
10            tracking: TrackingApi::new(api_key),
11        };
12    }
13}