mirror of https://github.com/shirou/gopsutil
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
416 B
Go
18 lines
416 B
Go
9 years ago
|
// +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
|
||
|
}
|