1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#![feature(specialization)]

mod error;

pub mod gen;
pub mod handlers;
pub mod request;
pub mod response;
pub mod settings;
pub mod swagger_ui;
pub mod util;

pub use error::*;
pub use rocket_okapi_codegen::*;

pub struct OperationInfo {
    pub path: String,
    pub method: rocket::http::Method,
    pub operation: okapi::openapi3::Operation,
}