fn main() {
if cfg!(feature = "internal-regenerate") {
let schema_path = "schemafy_lib/src/schema.json";
polywrap_schemafy_lib::Generator::builder()
.with_root_name_str("Schema")
.with_input_file(schema_path)
.build()
.generate_to_file("schemafy_lib/src/schema.rs")
.unwrap();
}
}