1//! Vespera Core - OpenAPI structure definitions 2//! 3//! Provides structures conforming to the OpenAPI 3.1 specification. 4 5pub mod openapi; 6pub mod route; 7pub mod schema; 8 9pub use openapi::*; 10pub use route::*; 11pub use schema::*;