(&self)
| 230 | |
| 231 | impl<'a> WorkspacePaths<'a> { |
| 232 | pub fn agents_dir(&self) -> Result<PathBuf> { |
| 233 | Ok(self.os.env.current_dir()?.join(workspace::AGENTS_DIR)) |
| 234 | } |
| 235 | |
| 236 | pub fn prompts_dir(&self) -> Result<PathBuf> { |
| 237 | Ok(self.os.env.current_dir()?.join(workspace::PROMPTS_DIR)) |
no test coverage detected