11 lines
153 B
Go
11 lines
153 B
Go
// +build windows
|
|
|
|
package loadavg
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func get() (*Stats, error) {
|
|
return nil, errors.New("loadavg for Windows is not supported")
|
|
}
|