usecrate::{models::market::ShopServices,errors::ReweError,paths::ApiPath};/// Search for markets by zip code
pub async fnget_shop_services(zip_code:&str)->Result<ShopServices, ReweError>{ApiPath::ShopServices.get(&[("zipCode", zip_code)],None).await
}