kops/vendor/github.com/google/go-tpm-tools/client/eventlog_other.go

11 lines
185 B
Go

//go:build !linux
// +build !linux
package client
import "errors"
func getRealEventLog() ([]byte, error) {
return nil, errors.New("failed to get event log: only Linux supported")
}