json_type/
lib.rs

1pub extern crate json_type_derive;
2
3pub trait JsonType {
4    fn json_type() -> &'static str;
5}
6