Get the global configuration file path
()
| 355 | |
| 356 | /// Get the global configuration file path |
| 357 | pub fn global_config_path() -> Option<PathBuf> { |
| 358 | global_config_dir().map(|p| p.join("config.toml")) |
| 359 | } |
| 360 | |
| 361 | impl GlobalConfig { |
| 362 | /// Load global configuration from the default location |
no test coverage detected