()
| 3438 | } |
| 3439 | |
| 3440 | fn linux_oci_arch() -> &'static str { |
| 3441 | match std::env::consts::ARCH { |
| 3442 | "x86_64" => "amd64", |
| 3443 | "aarch64" => "arm64", |
| 3444 | "arm" => "arm", |
| 3445 | other => other, |
| 3446 | } |
| 3447 | } |
| 3448 | |
| 3449 | #[allow(clippy::result_large_err)] |
| 3450 | fn registry_auth(image_ref: &str) -> Result<RegistryAuth, Status> { |
no outgoing calls
no test coverage detected