1 2 3 4 5 6 7 8 9 10
//! Authentication methods. #[cfg(feature = "approle")] pub mod approle; #[cfg(feature = "cert-auth")] pub mod cert; #[cfg(feature = "kubernetes-auth")] pub mod kubernetes; #[cfg(feature = "token")] pub mod token;