use hdd instead of empty string

This commit is contained in:
Chris Lu
2021-02-16 03:03:00 -08:00
parent f8446b42ab
commit 3fe628f04e
14 changed files with 29 additions and 28 deletions

View File

@@ -7,7 +7,7 @@ import (
type DiskType string
const (
HardDriveType DiskType = ""
HardDriveType DiskType = "hdd"
SsdType = "ssd"
)