open-nomad/vendor/github.com/shirou/gopsutil/disk/disk_darwin_nocgo.go
James Nugent d778d9d566 Update gopsutil (#2927)
* deps: Update github.com/go-ole/go-ole/...

* deps: Update github.com/StackExchange/wmi

* deps: Update github.com/shirou/gopsutil/...

* deps: Update github.com/ugorji/go/codec
2017-07-28 09:46:44 -07:00

11 lines
215 B
Go

// +build darwin
// +build !cgo
package disk
import "github.com/shirou/gopsutil/internal/common"
func IOCounters(names ...string) (map[string]IOCountersStat, error) {
return nil, common.ErrNotImplementedError
}