acton-service 0.20.0

Production-ready Rust backend framework with type-enforced API versioning
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! OAuth provider implementations
//!
//! Built-in support for Google, GitHub, and custom OIDC providers.

pub mod custom;
pub mod github;
pub mod google;

pub use custom::{CustomOidcConfig, CustomOidcProvider};
pub use github::GitHubProvider;
pub use google::GoogleProvider;