Remove all stored auth data for a server.
(mcp_name: &str)
| 111 | |
| 112 | /// Remove all stored auth data for a server. |
| 113 | pub async fn remove(mcp_name: &str) -> Result<(), std::io::Error> { |
| 114 | let mut data = read_all().await; |
| 115 | data.remove(mcp_name); |
| 116 | write_all(&data).await |
| 117 | } |
| 118 | |
| 119 | /// Update only the tokens portion of an entry. |
| 120 | pub async fn update_tokens( |
no test coverage detected