forge-tree 0.1.0

A powerful project scaffolding tool that generates folder and file structures from text representations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use colored::*;
use forge_tree::cli::Cli;

fn main() {
    let app = Cli::new();
    let matches = app.get_matches();

    if let Err(e) = Cli::run(matches) {
        eprintln!("{} {}", "Error:".red().bold(), e);
        std::process::exit(1);
    }
}