til-cli 0.1.1

A small app to log things you've learned
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern crate til_cli;

use std::env;
use std::process;

use til_cli::Learned;
use til_cli::run;
fn main() {
    let args: Vec<String> = env::args().collect();
    let learned = Learned::new(args).unwrap_or_else(|err| {
    	eprintln!("Problem parsing arguments: {}", err);
    	process::exit(1);
    });

    run(&learned);
}