containerd/vendor/github.com/docker/docker/pkg/system/errors.go

11 lines
195 B
Go

package system
import (
"errors"
)
var (
// ErrNotSupportedPlatform means the platform is not supported.
ErrNotSupportedPlatform = errors.New("platform and architecture is not supported")
)