10 lines
158 B
Go
10 lines
158 B
Go
|
// +build !linux
|
||
|
|
||
|
package system
|
||
|
|
||
|
type diskInfoCache struct{}
|
||
|
|
||
|
func (s *DiskIOStats) diskInfo(devName string) (map[string]string, error) {
|
||
|
return nil, nil
|
||
|
}
|