edb/main.go

15 lines
138 B
Go
Raw Normal View History

2020-03-04 18:09:19 +08:00
package main
import (
"runtime"
)
const (
port = "20051"
)
func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
2020-03-05 05:21:29 +08:00
createTestServer()
2020-03-04 18:09:19 +08:00
}