1 2 3 4 5 6 7 8 9
//! Type-safe authentication information extractors. pub mod basic; pub mod bearer; mod config; mod errors; pub use self::config::AuthExtractorConfig; pub use self::errors::AuthenticationError;