rweb_openapi/v3_0/
mod.rs

1//! Support for OpenApi version 3.0.1 specification.
2//!
3//! See the
4//! [specification](https://github.com/OAI/OpenAPI-Specification/blob/0dd79f6/versions/3.0.1.md)
5//! for more information.
6
7mod components;
8mod schema;
9
10pub use crate::v3_0::{components::*, schema::*};