simple-oauth 0.1.0-beta

Simple OAuth2 login and authorization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Common OAuth providers

mod discord;
mod github;
mod gitlab;
mod google;
mod oidc;

pub use discord::Discord;
pub use github::GitHub;
pub use gitlab::GitLab;
pub use google::Google;
pub use oidc::Oidc;