github.com/isyscore/isc-gobase@v1.5.3-0.20231218061332-cbc7451899e9/system/disk/disk_darwin_nocgo.go (about)

     1  //go:build darwin && !cgo
     2  
     3  package disk
     4  
     5  import (
     6  	"context"
     7  	"github.com/isyscore/isc-gobase/system/common"
     8  )
     9  
    10  func IOCountersWithContext(ctx context.Context, names ...string) (map[string]IOCountersStat, error) {
    11  	return nil, common.ErrNotImplementedError
    12  }