1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00
shirou_gopsutil/disk_darwin.go
Shirou WAKAYAMA a199f2d854 add darwin placeholder. Not working yet.
Currently, test should be failed with NotImplementedError or something.
2014-08-08 23:09:28 +09:00

13 lines
232 B
Go

// +build darwin
package gopsutil
func DiskPartitions(all bool) ([]DiskPartitionStat, error) {
return nil, NotImplementedError
}
func DiskIOCounters() (map[string]DiskIOCountersStat, error) {
return nil, NotImplementedError
}