1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-28 13:48:49 +08:00
shirou_gopsutil/disk/disk_darwin_nocgo.go
2017-04-07 11:40:49 -07:00

11 lines
222 B
Go

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