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