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

18 lines
359 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) gpuFillInfo(info *GPUInfo) error {
return errors.New("gpuFillInfo not implemented on " + runtime.GOOS)
}