1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! # Introduction
//! You have to create a [`MarketContext`] to select a market
//! # Api paths
//! - Market: [`market`]
//! - Products: [`product`]
//! - Basket: [`market::basket::ReweBasket`]
//! - Offers: [`offer`]
 
#[cfg(test)]
mod tests;

pub mod errors;
pub mod models;
mod paths;

pub mod market;
pub mod product;
pub mod offer;

pub use models::market_context::MarketContext;