github_auth/
lib.rs

1mod auth_response;
2mod authenticator;
3mod builder;
4mod scopes;
5mod token;
6
7pub use authenticator::*;
8pub use builder::*;
9pub use scopes::*;
10pub use token::*;
11
12/// The GitHub authorization base URL
13pub const GITHUB_AUTH_URL: &'static str = "https://api.github.com/authorizations";