2016-07-04 22:48:37 +00:00
|
|
|
// +build !linux
|
|
|
|
|
2018-07-11 23:43:49 +00:00
|
|
|
package diskio
|
2016-07-04 22:48:37 +00:00
|
|
|
|
|
|
|
type diskInfoCache struct{}
|
|
|
|
|
2018-01-17 23:12:05 +00:00
|
|
|
func (s *DiskIO) diskInfo(devName string) (map[string]string, error) {
|
2016-07-04 22:48:37 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|