openapi-to-rust 0.1.13

Generate strongly-typed Rust structs, HTTP clients, and SSE streaming clients from OpenAPI 3.1 specifications
Documentation
1
2
3
4
5
6
7
8
9
10
//! Generated API modules
//! 
//! This module exports all generated API types and clients.
//! Do not edit manually - regenerate using the appropriate script.

pub mod types;
pub mod client;

pub use types::*;
pub use client::*;