Files
scrutiny/vendor/github.com/jaypipes/ghw/memory_stub.go
T
2020-08-21 06:31:48 +00:00

18 lines
362 B
Go

// +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 ghw
import (
"runtime"
"github.com/pkg/errors"
)
func (ctx *context) memFillInfo(info *MemoryInfo) error {
return errors.New("memFillInfo not implemented on " + runtime.GOOS)
}