mirror of
https://github.com/Blah-IM/blahrs.git
synced 2025-05-01 00:31:09 +00:00
8 lines
214 B
Rust
8 lines
214 B
Rust
#![expect(clippy::print_stdout, reason = "allowed to dump OAPI")]
|
|
|
|
fn main() {
|
|
let json = blah_types::openapi()
|
|
.to_pretty_json()
|
|
.expect("serialization cannot fail");
|
|
println!("{json}");
|
|
}
|