github_auth 0.4.0

Authenticate with GitHub from the command line.
Documentation
1
2
3
4
5
6
7
8
9
/// Token returned by the authenticator function.
#[derive(Debug, PartialEq)]
pub struct Token(String);

impl Token {
  pub(crate) fn new(bytes: String) -> Self {
    Token(bytes)
  }
}