(&self)
| 50 | |
| 51 | impl GlobalArguments { |
| 52 | pub fn config_path(&self) -> String { |
| 53 | self.config_path |
| 54 | .clone() |
| 55 | .unwrap_or_else(ipc_provider::default_config_path) |
| 56 | } |
| 57 | |
| 58 | pub fn config(&self) -> Result<Config> { |
| 59 | let config_path = self.config_path(); |
no outgoing calls
no test coverage detected