(&self, workflow_id: &str)
| 84 | } |
| 85 | |
| 86 | fn workflow_checkpoint_path(&self, workflow_id: &str) -> PathBuf { |
| 87 | self.dir |
| 88 | .join("workflow_checkpoints") |
| 89 | .join(format!("{}.json", safe_session_id(workflow_id))) |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | fn safe_session_id(id: &str) -> String { |
no outgoing calls
no test coverage detected