mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
13 lines
232 B
Go
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
|
|
}
|