Initial commit

This commit is contained in:
2026-04-14 03:44:59 +02:00
commit a6eb642c76
32 changed files with 589 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
use workshop_macro::from_schema;
from_schema!("https://download.huizinga.dev/workshop/schema.json");
fn main() {
let content = std::fs::read_to_string("./users.json").unwrap();
let users: Vec<User> = serde_json::from_str(&content).unwrap();
println!("{users:#?}");
}