rweb_openapi/lib.rs
1//! Openapi provides structures and support for serializing and deserializing [openapi](https://github.com/OAI/OpenAPI-Specification) specifications
2//!
3//! # Examples
4//!
5//! Typical use deserialing an existing to a persisted spec to rust form or
6//! visa versa
7//!
8//! The hyper client should be configured with tls.
9//!
10use std::borrow::Cow;
11
12pub mod v3_0;
13
14pub type Str = Cow<'static, str>;