mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-23 01:51:44 +00:00
12 lines
219 B
Rust
12 lines
219 B
Rust
use std::fs;
|
|
|
|
use roc_checkmate_schema::AllEvents;
|
|
|
|
fn main() {
|
|
let schema = AllEvents::schema();
|
|
fs::write(
|
|
"schema.json",
|
|
serde_json::to_string_pretty(&schema).unwrap(),
|
|
)
|
|
.unwrap();
|
|
}
|