1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*!
# elif-openapi
OpenAPI 3.0 specification generation for elif.rs framework.
This crate provides automatic API documentation generation from annotated Rust code,
with support for interactive Swagger UI and multiple export formats.
## Features
- Automatic OpenAPI 3.0 specification generation
- Route and endpoint discovery from framework types
- Request/response schema extraction from Rust structs
- Authentication scheme documentation
- Interactive Swagger UI integration
- Multiple export formats (Postman, Insomnia)
## Usage
```rust,no_run
use elif_openapi::{OpenApiGenerator, OpenApiConfig};
let mut generator = OpenApiGenerator::new(OpenApiConfig::default());
let routes = vec![]; // Your route metadata here
let spec = generator.generate(&routes).unwrap();
```
*/
// Re-export main types
pub use crate::;
// Re-export the derive macro from the proc-macro crate
pub use OpenApiSchema;
// Core modules
// Schema generation
// Route and endpoint discovery
// Export functionality
// Interactive documentation
// Utilities
// Test utilities