(provider: &str)
| 3128 | ]; |
| 3129 | |
| 3130 | fn provider_env_var(provider: &str) -> Option<&'static str> { |
| 3131 | let normalized = provider.trim().to_lowercase(); |
| 3132 | AUTH_ENV_PROVIDERS |
| 3133 | .iter() |
| 3134 | .find_map(|(name, env)| (*name == normalized).then_some(*env)) |
| 3135 | } |
| 3136 | |
| 3137 | async fn handle_auth_command(action: AuthCommands) -> anyhow::Result<()> { |
| 3138 | match action { |
no outgoing calls
no test coverage detected