mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-28 13:48:49 +08:00
11 lines
200 B
Go
11 lines
200 B
Go
// +build darwin
|
|
// +build !cgo
|
|
|
|
package disk
|
|
|
|
import "github.com/shirou/gopsutil/internal/common"
|
|
|
|
func IOCounters() (map[string]IOCountersStat, error) {
|
|
return nil, common.ErrNotImplementedError
|
|
}
|