blob: e3fd7a2ffe7f4ff2fcdb8b9826fb3327c54ae371 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// +build windows
package stats
import (
"syscall"
)
type DiskStatus struct {
Dir string
All uint64
Used uint64
Free uint64
}
func NewDiskStatus(path string) (disk *DiskStatus) {
return
}
|