d778d9d566
* 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
11 lines
215 B
Go
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
|
|
}
|