8 lines
138 B
Go
8 lines
138 B
Go
//go:build !linux
|
|
|
|
package metrics
|
|
|
|
func ReadDiskUsage(path string) (DiskUsage, error) {
|
|
return DiskUsage{Path: path}, ErrNotSupported
|
|
}
|