Get the path to a task's directory
(&self, task_id: &str)
| 116 | |
| 117 | /// Get the path to a task's directory |
| 118 | pub fn task_dir(&self, task_id: &str) -> PathBuf { |
| 119 | self.data_dir.join("tasks").join(task_id) |
| 120 | } |
| 121 | |
| 122 | /// Open (or create) the agent.log file for a task in append mode. |
| 123 | /// |
no outgoing calls