2016-07-05 06:48:37 +08:00
|
|
|
// +build !linux
|
|
|
|
|
|
2018-07-12 07:43:49 +08:00
|
|
|
package diskio
|
2016-07-05 06:48:37 +08:00
|
|
|
|
|
|
|
|
type diskInfoCache struct{}
|
|
|
|
|
|
2021-02-17 07:19:50 +08:00
|
|
|
func (d *DiskIO) diskInfo(devName string) (map[string]string, error) {
|
2016-07-05 06:48:37 +08:00
|
|
|
return nil, nil
|
|
|
|
|
}
|