2014-02-25 18:19:13 -05:00
|
|
|
package system
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2015-07-28 12:13:12 -04:00
|
|
|
// ErrNotSupportedPlatform means the platform is not supported.
|
2014-02-25 18:19:13 -05:00
|
|
|
ErrNotSupportedPlatform = errors.New("platform and architecture is not supported")
|
|
|
|
)
|