(mut self, dir: impl Into<PathBuf>)
| 77 | } |
| 78 | |
| 79 | pub fn with_agent_dir(mut self, dir: impl Into<PathBuf>) -> Self { |
| 80 | self.agent_dirs.push(dir.into()); |
| 81 | self |
| 82 | } |
| 83 | |
| 84 | /// Register a cattle-style worker with this session's task delegation registry. |
| 85 | pub fn with_worker_agent(mut self, spec: WorkerAgentSpec) -> Self { |
no outgoing calls