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