codegenr 0.0.2

Fast json/yaml/openapi code generator based on handlebars templating.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use codegenr_lib::helpers::handlebars_setup;

fn main() {
  let mut h = handlebars::Handlebars::new();
  println!("===================================================================");
  println!("Default handlebars configuration :\n{:#?}", h);

  handlebars_setup(&mut h, Default::default());
  println!("===================================================================");
  println!("codegenr handlebars configuration :\n{:#?}", h);
}