kegani 0.1.0

A developer-friendly, ergonomic, production-ready Rust web framework
Documentation
1
2
3
4
5
6
7
8
9
//! OpenAPI module for Kegani
//!
//! Provides automatic OpenAPI documentation and Swagger UI.

pub mod doc;
pub mod ui;

pub use doc::{OpenApiBuilder, OpenApiDoc};
pub use ui::{SwaggerUi, ReDoc};