10 lines
128 B
Rust
10 lines
128 B
Rust
use schemars::JsonSchema;
|
|
|
|
#[derive(JsonSchema)]
|
|
#[schemars(example = "my_fn")]
|
|
pub struct Struct;
|
|
|
|
fn my_fn() {}
|
|
|
|
fn main() {}
|