add placeholder function.

This commit is contained in:
WAKAYAMA Shirou 2014-04-23 10:30:39 +09:00 committed by Shirou WAKAYAMA
parent 6d7ad643fb
commit 66c5476fb7
1 changed files with 10 additions and 0 deletions

10
disk_linux.go Normal file
View File

@ -0,0 +1,10 @@
// +build linux
package gopsutil
func Disk_partitions() ([]Disk_partitionStat, error) {
ret := make([]Disk_partitionStat, 0)
return ret, nil
}