(&self, status: McpStatus)
| 177 | } |
| 178 | |
| 179 | pub async fn set_status(&self, status: McpStatus) { |
| 180 | let mut guard = self.status.write().await; |
| 181 | *guard = status; |
| 182 | } |
| 183 | |
| 184 | // -- Factory helpers ----------------------------------------------------- |
| 185 |
no outgoing calls
no test coverage detected