9 lines
100 B
Go
9 lines
100 B
Go
|
//go:build !linux && !windows
|
||
|
|
||
|
package sysinfo
|
||
|
|
||
|
func numCPU() int {
|
||
|
// not implemented
|
||
|
return 0
|
||
|
}
|