limp 0.2.1

effortless project initialization and dependency management
Documentation
1
2
3
4
5
6
7
8
9
10
use limp::actions::CommandHandler;

fn main() {
    let matches = CommandHandler::build().get_matches();
    let ch = CommandHandler::parse(&matches);
    if let Err(e) = ch.make_action() {
        eprintln!("ERROR: {e}");
        std::process::exit(1);
    }
}