Skip to main content

tracedb_sdk/api/
mod.rs

1//! API client and types for the TraceDB v1 HTTP API
2//!
3//! This module contains all the API definitions including request/response types
4//! and client implementations for interacting with the API.
5//!
6//! ## Modules
7//!
8//! - [`resources`] - Service clients and endpoints
9//! - [`types`] - Request, response, and model types
10
11pub mod resources;
12pub mod types;
13
14pub use resources::{ApiClient, TracedbClient};
15pub use types::*;