seaweedfs/go/stats/disk_windows.go
2014-03-26 13:22:27 -07:00

19 lines
200 B
Go

// +build windows
package stats
import (
"syscall"
)
type DiskStatus struct {
Dir string
All uint64
Used uint64
Free uint64
}
func NewDiskStatus(path string) (disk *DiskStatus) {
return
}