dw-models 0.1.0

Rust model for deskwatch server
Documentation
1
2
3
4
5
6
7
8
extern crate dw_models;

use schemars::schema_for;

fn main() {
    let schema = schema_for!(dw_models::Bucket);
    println!("{}", serde_json::to_string_pretty(&schema).unwrap());
}