mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-28 13:48:49 +08:00
18 lines
416 B
Go
18 lines
416 B
Go
![]() |
// +build !darwin,!linux,!freebsd,!windows
|
||
|
|
||
|
package disk
|
||
|
|
||
|
import "github.com/shirou/gopsutil/internal/common"
|
||
|
|
||
|
func IOCounters() (map[string]IOCountersStat, error) {
|
||
|
return nil, common.ErrNotImplementedError
|
||
|
}
|
||
|
|
||
|
func Partitions(all bool) ([]PartitionStat, error) {
|
||
|
return []PartitionStat{}, common.ErrNotImplementedError
|
||
|
}
|
||
|
|
||
|
func Usage(path string) (*UsageStat, error) {
|
||
|
return nil, common.ErrNotImplementedError
|
||
|
}
|