wf-market 0.2.1

A Rust client library for the warframe.market API
Documentation
//! API endpoint implementations.
//!
//! This module contains the actual API calls organized by resource type.

mod items;
mod orders;
mod rivens;
mod users;

// Response wrapper types used by multiple endpoints
use serde::Deserialize;

/// Standard API response wrapper.
#[derive(Debug, Deserialize)]
pub(crate) struct ApiResponse<T> {
    #[serde(rename = "apiVersion")]
    #[allow(dead_code)]
    pub api_version: Option<String>,
    pub data: T,
}