Authenticate with GitHub from the command line. Caches the authentication token so that future interactions just work.
```rust,ignore extern crate github_auth;
use github_auth::Authenticator;
let auth = Authenticator::new("myexampleapp"); let creds = auth.auth().unwrap(); println!("{:?}", creds);
let location = auth.location(); println!("Token is stored at {:?}", &location); ```
This dialog is only required to generate a valid token. Once a valid token is
created, it will no longer be shown.
txt
GitHub username: my_name
GitHub password:
GitHub OTP (optional): 5678
sh
$ cargo add github_auth
MIT OR Apache-2.0