edb/main.go

15 lines
138 B
Go
Raw Normal View History

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