1 2 3 4 5 6 7 8 9 10 11 12
//! eBay Buy APIs pub mod feed; pub mod marketing; pub mod offer; pub mod order; // Re-export commonly used types pub use feed::FeedClient; pub use marketing::MarketingClient; pub use offer::OfferClient; pub use order::OrderClient;