...

Source file src/github.com/shirou/gopsutil/host/host_darwin_nocgo.go

Documentation: github.com/shirou/gopsutil/host

     1  // +build darwin
     2  // +build !cgo
     3  
     4  package host
     5  
     6  import (
     7  	"context"
     8  
     9  	"github.com/shirou/gopsutil/internal/common"
    10  )
    11  
    12  func SensorsTemperaturesWithContext(ctx context.Context) ([]TemperatureStat, error) {
    13  	return []TemperatureStat{}, common.ErrNotImplementedError
    14  }
    15  

View as plain text