slate 1.4.0

Manage your snippets from your command line.
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate slate;

use std::env;
use slate::cli;

pub fn main() {
    let argv: Vec<String> = env::args().collect();

    cli::run(argv);
}