Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
lima-vm
GitHub Repository: lima-vm/lima
Path: blob/master/pkg/driver/vz/errors_darwin.go
2611 views
1
//go:build darwin && !no_vz
2
3
// SPDX-FileCopyrightText: Copyright The Lima Authors
4
// SPDX-License-Identifier: Apache-2.0
5
6
package vz
7
8
import "errors"
9
10
//nolint:revive,staticcheck // false positives with proper nouns
11
var (
12
errRosettaUnsupported = errors.New("Rosetta is unsupported on non-ARM64 hosts")
13
errUnimplemented = errors.New("unimplemented")
14
)
15
16