add placeholder function.
This commit is contained in:
parent
6d7ad643fb
commit
66c5476fb7
|
@ -0,0 +1,10 @@
|
|||
// +build linux
|
||||
|
||||
package gopsutil
|
||||
|
||||
|
||||
func Disk_partitions() ([]Disk_partitionStat, error) {
|
||||
ret := make([]Disk_partitionStat, 0)
|
||||
|
||||
return ret, nil
|
||||
}
|
Loading…
Reference in New Issue