Rust based library for interacting with the Github API. This is just a practice library while I learn how to write Rust libraries / applications.
extern crate github;
use github::Github;
fn main() {
let github = Github::new();
github.user("octocat");
}