Skip to main content

dbrest_core/openapi/
mod.rs

1//! OpenAPI 3.0 specification generation
2//!
3//! This module provides functionality to generate OpenAPI 3.0 specifications
4//! from the schema cache.
5
6pub mod generator;
7pub mod types;
8
9pub use generator::OpenApiGenerator;
10pub use types::*;