| 14 | /// A project configuration paired with the path it was loaded from. |
| 15 | #[derive(Debug)] |
| 16 | pub struct DiscoveredProjectConfig { |
| 17 | pub config: ProjectConfig, |
| 18 | pub path: PathBuf, |
| 19 | } |
| 20 | |
| 21 | impl DiscoveredProjectConfig { |
| 22 | /// Discover and load project configuration file |
nothing calls this directly
no outgoing calls
no test coverage detected