()
| 2893 | } |
| 2894 | |
| 2895 | fn project_root() -> Result<PathBuf> { |
| 2896 | std::env::current_dir() |
| 2897 | .map_err(|e| ApiError::BadRequest(format!("Failed to resolve current directory: {}", e))) |
| 2898 | } |
| 2899 | |
| 2900 | fn canonicalize_within_root(path: &FsPath, root: &FsPath) -> Result<PathBuf> { |
| 2901 | let canonical_root = root |
no outgoing calls
no test coverage detected