cf-authn-resolver 0.2.5

AuthN resolver module - discovers and routes to plugins
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! `AuthN` Resolver Module
//!
//! This module discovers `AuthN` resolver plugins via types-registry
//! and routes authentication calls to the selected plugin based on vendor configuration.
//!
//! Provides the `AuthNResolverClient` trait registered
//! in `ClientHub` for consumption by other modules.
#![cfg_attr(coverage_nightly, feature(coverage_attribute))]

pub mod config;
pub mod domain;
pub mod module;