Delete .travis.yml

This commit is contained in:
Graham Esau 2019-12-27 17:50:02 +00:00
parent 805fb243b2
commit e299522573
3 changed files with 2 additions and 17 deletions

View file

@ -22,6 +22,6 @@ fn main() {
..SchemaSettings::draft07()
};
let gen = settings.into_generator();
let schema = gen.into_root_schema_for::<MyStruct>();;
let schema = gen.into_root_schema_for::<MyStruct>();
println!("{}", serde_json::to_string_pretty(&schema).unwrap());
}