errors.go 130 B

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