aboutsummaryrefslogtreecommitdiff
path: root/go/stats/disk_windows.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2014-03-28 12:18:01 -0700
committerChris Lu <chris.lu@gmail.com>2014-03-28 12:18:01 -0700
commit25a3c47defd1b9dab22942eeffd10b550e8ac527 (patch)
tree04f79ec81901e511fe9e4e48da5ce00f8b7524d0 /go/stats/disk_windows.go
parent59f6a13609e63d23ffd4410edce38223a5705232 (diff)
downloadseaweedfs-25a3c47defd1b9dab22942eeffd10b550e8ac527.tar.xz
seaweedfs-25a3c47defd1b9dab22942eeffd10b550e8ac527.zip
Issue 65: weed-fs 0.51 does not compile under windows
Diffstat (limited to 'go/stats/disk_windows.go')
-rw-r--r--go/stats/disk_windows.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/go/stats/disk_windows.go b/go/stats/disk_windows.go
deleted file mode 100644
index e3fd7a2ff..000000000
--- a/go/stats/disk_windows.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// +build windows
-
-package stats
-
-import (
- "syscall"
-)
-
-type DiskStatus struct {
- Dir string
- All uint64
- Used uint64
- Free uint64
-}
-
-func NewDiskStatus(path string) (disk *DiskStatus) {
- return
-}