nidus-openapi 1.0.0

OpenAPI route metadata collection and document rendering helpers for Nidus applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![deny(missing_docs)]

//! OpenAPI document generation and serving support.

mod document;
mod html;
mod path;
mod route;

pub use document::{OpenApiDocument, OpenApiDocumentError};
pub use route::OpenApiRoute;