opensource 0.2.0

API Wrapper for the Open Source License API.
Documentation
1
2
3
4
5
6
7
8
extern crate opensource;

use opensource::client;

fn main() {
    let license = client::get("BSD-3").unwrap();
    println!("{}", license.name);
}