duck-template 0.1.0

A cli tool for generating files from a template just with a json file
1
2
3
4
5
6
7
8
9
use std::collections::HashMap;

#[derive(Debug, Clone)]
pub struct Create {
  pub variant: String,
  pub outdir: String,
  pub args: HashMap<String, String>,
  pub config: String,
}