15 lines
138 B
Go
15 lines
138 B
Go
package main
|
|
|
|
import (
|
|
"runtime"
|
|
)
|
|
|
|
const (
|
|
port = "20051"
|
|
)
|
|
|
|
func main() {
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
|
createTestServer()
|
|
}
|