From 66c5476fb7edee924e9009dc7fce857abfd84568 Mon Sep 17 00:00:00 2001 From: WAKAYAMA Shirou Date: Wed, 23 Apr 2014 10:30:39 +0900 Subject: [PATCH] add placeholder function. --- disk_linux.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 disk_linux.go diff --git a/disk_linux.go b/disk_linux.go new file mode 100644 index 0000000..4da538b --- /dev/null +++ b/disk_linux.go @@ -0,0 +1,10 @@ +// +build linux + +package gopsutil + + +func Disk_partitions() ([]Disk_partitionStat, error) { + ret := make([]Disk_partitionStat, 0) + + return ret, nil +}