Add an agent directory
(mut self, dir: impl Into<PathBuf>)
| 493 | |
| 494 | /// Add an agent directory |
| 495 | pub fn add_agent_dir(mut self, dir: impl Into<PathBuf>) -> Self { |
| 496 | self.agent_dirs.push(dir.into()); |
| 497 | self |
| 498 | } |
| 499 | |
| 500 | /// Check if any directories are configured |
| 501 | pub fn has_directories(&self) -> bool { |
no outgoing calls