//! API endpoint implementations.
//!//! This module contains the actual API calls organized by resource type.
moditems;modorders;modrivens;modusers;// Response wrapper types used by multiple endpoints
useserde::Deserialize;/// Standard API response wrapper.
#[derive(Debug, Deserialize)]pub(crate)structApiResponse<T>{#[serde(rename ="apiVersion")]#[allow(dead_code)]pubapi_version:Option<String>,
pubdata: T,
}