errors.go 191 B

12345678910
  1. package sysinfo
  2. import (
  3. "errors"
  4. )
  5. var (
  6. // ErrFeatureUnsupported indicates unsupported platform.
  7. ErrFeatureUnsupported = errors.New("That feature is not supported on this platform")
  8. )