errors.go 195 B

12345678910
  1. package system
  2. import (
  3. "errors"
  4. )
  5. var (
  6. // ErrNotSupportedPlatform means the platform is not supported.
  7. ErrNotSupportedPlatform = errors.New("platform and architecture is not supported")
  8. )