(&self)
| 134 | } |
| 135 | |
| 136 | pub async fn list(&self) -> Result<Vec<ProcessInfo>> { |
| 137 | self.http_get("/list").await |
| 138 | } |
| 139 | |
| 140 | pub async fn info(&self, id: &str) -> Result<Option<ProcessInfo>> { |
| 141 | self.http_get(&format!("/info/{}", id)).await |
no test coverage detected