mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
11 lines
195 B
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")
|
|
)
|