9 lines
101 B
Rust
9 lines
101 B
Rust
|
|
use schemars::JsonSchema_repr;
|
||
|
|
|
||
|
|
#[derive(JsonSchema_repr)]
|
||
|
|
pub enum Enum {
|
||
|
|
Unit,
|
||
|
|
}
|
||
|
|
|
||
|
|
fn main() {}
|