Get the global configuration file path
()
| 435 | |
| 436 | /// Get the global configuration file path |
| 437 | pub fn global_config_path() -> Option<PathBuf> { |
| 438 | global_config_dir().map(|p| p.join("config.toml")) |
| 439 | } |
| 440 | |
| 441 | impl GlobalConfig { |
| 442 | /// Load global configuration from the default location |
no test coverage detected