7 lines
187 B
Go
7 lines
187 B
Go
//go:build !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows
|
|
|
|
package main
|
|
|
|
func processCPUSeconds() (float64, bool) {
|
|
return 0, false
|
|
}
|