(&self, server_name: &str)
| 518 | } |
| 519 | |
| 520 | async fn oauth_status_for(&self, server_name: &str) -> Option<McpOAuthStatus> { |
| 521 | self.oauth_states |
| 522 | .read() |
| 523 | .await |
| 524 | .get(server_name) |
| 525 | .map(|state| state.status.clone()) |
| 526 | } |
| 527 | |
| 528 | async fn default_status_for( |
| 529 | &self, |
no test coverage detected