| 12345678910111213141516171819 |
- //go:build !linux && !windows
- // +build !linux,!windows
- // Use and distribution licensed under the Apache license version 2.
- //
- // See the COPYING file in the root project directory for full text.
- //
- package cpu
- import (
- "runtime"
- "github.com/pkg/errors"
- )
- func (i *Info) load() error {
- return errors.New("cpu.Info.load not implemented on " + runtime.GOOS)
- }
|