(value: &str)
| 482 | } |
| 483 | |
| 484 | fn parse_compute_driver(value: &str) -> std::result::Result<String, String> { |
| 485 | openshell_core::config::normalize_compute_driver_name(value) |
| 486 | } |
| 487 | |
| 488 | fn resolve_config_path(args: &RunArgs) -> Result<Option<PathBuf>> { |
| 489 | if let Some(path) = args.config.clone() { |
nothing calls this directly
no test coverage detected