2
0
mirror of https://github.com/status-im/op-geth.git synced 2025-03-02 07:20:39 +00:00

11 lines
216 B
Go

// +build !linux
package metrics
import "errors"
// ReadDiskStats retrieves the disk IO stats belonging to the current process.
func ReadDiskStats(stats *DiskStats) error {
return errors.New("Not implemented")
}