hermes-sdk 0.1.0

The most comprehensive Rust SDK for eBay marketplace APIs - 17 specialized clients with 86+ methods
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! eBay Commerce APIs
//! 
//! This module provides access to eBay's Commerce APIs for catalog, taxonomy, identity, and translation.

pub mod catalog;
pub mod taxonomy;
pub mod identity;
pub mod translation;

// Re-export commonly used types
pub use catalog::CatalogClient;
pub use taxonomy::TaxonomyClient;
pub use identity::IdentityClient;
pub use translation::TranslationClient;