28 lines
442 B
Go
28 lines
442 B
Go
package drivers
|
|
|
|
type DiskInfo struct {
|
|
DevicePath string
|
|
Model string
|
|
Serial string
|
|
Protocol string
|
|
MountPoint string
|
|
IsMounted bool
|
|
}
|
|
|
|
type DiskUsage struct {
|
|
TotalBytes uint64
|
|
FreeBytes uint64
|
|
UsedBytes uint64
|
|
UsagePercent float64
|
|
}
|
|
|
|
type DiskSMART struct {
|
|
Passed bool
|
|
TemperatureC int
|
|
PowerOnHours int
|
|
PowerCycleCount int
|
|
WearoutPercent int
|
|
HealthRemaining int
|
|
HasWearData bool
|
|
}
|