rewe 0.2.1

A rewe mobile api implementation for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::market::details::get_market_details_by_id;
use crate::market::services::get_shop_services;
use crate::tests::{test_zip_code, test_market_id};

#[tokio::test]
pub async fn test_market_details() {
    get_market_details_by_id(test_market_id()).await.unwrap();
}

#[tokio::test]
pub async fn test_shop_services() {
    get_shop_services(&test_zip_code()).await.unwrap();
}