(path: &Path, content: &str)
| 107 | } |
| 108 | |
| 109 | pub fn write_config(path: &Path, content: &str) -> Result<(), String> { |
| 110 | write_config_atomic(path, content, None) |
| 111 | } |
| 112 | |
| 113 | pub fn write_project_config(project_path: &str, path: &Path, content: &str) -> Result<(), String> { |
| 114 | let canonical_project = Path::new(project_path) |
no test coverage detected