cpt 0.5.0

A filesystem tool that will copy a folder structure and if there is provided templating data when it encounders any `.tpl` files, it tries to fill it using Handlebar syntax and prints out the transformed version.
Documentation
1
2
3
4
5
6
7
8
9
mod args;

use crate::args::FromArgs;
use cpt::model::Cpt;

#[cfg_attr(tarpaulin, skip)]
pub fn main() -> Result<(), Box<dyn std::error::Error>> {
	Cpt::from_args(None)?.execute()
}