Olares/cli/pkg/utils/disk_linux.go

10 lines
164 B
Go
Raw Normal View History

package utils
func GetDrives() []string {
return []string{}
}
func GetDiskSpace(path string) (total uint64, free uint64, err error) {
return total, free, err
}