(&self)
| 29 | |
| 30 | impl McpRuntimeConfig { |
| 31 | fn oauth_required(&self) -> bool { |
| 32 | matches!( |
| 33 | self, |
| 34 | McpRuntimeConfig::Remote(RemoteMcpConfig { |
| 35 | oauth_enabled: true, |
| 36 | .. |
| 37 | }) |
| 38 | ) |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | #[derive(Debug, Clone, Serialize, Deserialize)] |
no outgoing calls
no test coverage detected