Get the global configuration file path
()
| 373 | |
| 374 | /// Get the global configuration file path |
| 375 | pub fn global_config_path() -> Option<PathBuf> { |
| 376 | global_config_dir().map(|p| p.join("config.toml")) |
| 377 | } |
| 378 | |
| 379 | impl GlobalConfig { |
| 380 | /// Load global configuration from the default location |
no test coverage detected