edb/main.go
2020-03-05 05:21:29 +08:00

15 lines
138 B
Go

package main
import (
"runtime"
)
const (
port = "20051"
)
func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
createTestServer()
}