150b657bad
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
6 lines
232 B
Go
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")
|