use papercrate::openapi::ApiDoc; use utoipa::OpenApi; fn main() { let spec = ApiDoc::openapi(); let json = serde_json::to_string_pretty(&spec).expect("serialize openapi"); println!("{}", json); }