mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
7 lines
232 B
Go
7 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")
|