Get the config file path
()
| 92 | |
| 93 | /// Get the config file path |
| 94 | fn config_path() -> Option<PathBuf> { |
| 95 | Self::config_dir().map(|p| p.join("config.toml")) |
| 96 | } |
| 97 | |
| 98 | /// Load config from file, or return default if not found |
| 99 | pub fn load() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected