Get the config directory path (~/.config/observe/)
()
| 87 | impl Config { |
| 88 | /// Get the config directory path (~/.config/observe/) |
| 89 | fn config_dir() -> Option<PathBuf> { |
| 90 | dirs::config_dir().map(|p| p.join("observe")) |
| 91 | } |
| 92 | |
| 93 | /// Get the config file path |
| 94 | fn config_path() -> Option<PathBuf> { |
nothing calls this directly
no outgoing calls
no test coverage detected