Authenticate with GitHub from the command line.
```rust,ignore extern crate github_auth;
use github_auth::Authenticator;
let auth = Authenticator::default(); let creds = auth.auth().unwrap(); println!("{:?}", creds); ```
sh
$ cargo add github_auth
MIT OR Apache-2.0