moby/pkg/system/errors.go
Sebastiaan van Stijn 150b657bad
pkg/system: move ErrNotSupportedOperatingSystem to where it's used
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2023-09-07 22:04:33 +02:00

6 lines
232 B
Go

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