(&self, id: &str)
| 248 | } |
| 249 | |
| 250 | async fn exists(&self, id: &str) -> Result<bool> { |
| 251 | let path = self.session_path(id); |
| 252 | Ok(path.exists()) |
| 253 | } |
| 254 | |
| 255 | async fn save_artifacts(&self, id: &str, artifacts: &ArtifactStore) -> Result<()> { |
| 256 | let artifact_dir = self.artifact_dir(id); |