core_dt 0.1.0

Build your entire project with one command 🚀
Documentation
1
2
3
4
5
6
7
8
9
use core_dt::TemplateHandler;
use std::path::PathBuf;

fn main() {
  let template_handler = TemplateHandler::new("Hello-World".to_string());
  let output_path = PathBuf::from("Hello_World");
  template_handler.download_base_structure(output_path.clone());
  template_handler.run_commands(output_path);
}