| 50 | |
| 51 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 52 | pub enum AuthMethodType { |
| 53 | Auto, |
| 54 | Code, |
| 55 | } |
| 56 | |
| 57 | pub struct AuthManager { |
| 58 | credentials: Arc<RwLock<HashMap<String, AuthInfo>>>, |
nothing calls this directly
no outgoing calls
no test coverage detected