1 2 3 4 5 6 7 8 9
//! Authentication Providers //! //! This module contains various authentication provider implementations. pub mod api_key; pub mod oauth2; pub use api_key::ApiKeyProvider; pub use oauth2::OAuth2Provider;