mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00

Remove IOCountersForNames that was recently added in favor of variadic function with same capabilities.
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
|
|
}
|