codesnip 0.5.1

snippet bundle tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
use codesnip::Opt;
use std::process::exit;

const EXIT_FAILURE: i32 = 1;

fn main() {
    if let Err(err) = Opt::from_args().execute() {
        eprintln!("error: {}", err);
        exit(EXIT_FAILURE);
    }
}