1//go:build darwin && !no_vz 2 3// SPDX-FileCopyrightText: Copyright The Lima Authors 4// SPDX-License-Identifier: Apache-2.0 5 6package vz 7 8import "errors" 9 10//nolint:revive,staticcheck // false positives with proper nouns 11var ( 12 errRosettaUnsupported = errors.New("Rosetta is unsupported on non-ARM64 hosts") 13 errUnimplemented = errors.New("unimplemented") 14) 15 16