Skip to main content

testquorum_api/
lib.rs

1//! TestQuorum API client library.
2//!
3//! This crate provides a type-safe Rust interface to the TestQuorum API.
4//! All types and the client are generated from the OpenAPI specification
5//! using progenitor.
6
7use progenitor::generate_api;
8
9// Generate the API client and types from the OpenAPI specification.
10// The base URL is hardcoded to api.testquorum.dev.
11generate_api! {
12    spec = "openapi.json",
13    inner_type = reqwest::Client,
14}