mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-05-10 20:15:59 +08:00
14 lines
148 B
Go
14 lines
148 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"runtime"
|
||
|
|
|
||
|
|
"go.uber.org/automaxprocs/maxprocs"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
maxprocs.Set()
|
||
|
|
fmt.Print(runtime.GOMAXPROCS(0))
|
||
|
|
}
|