mirror of
https://github.com/ttttupup/wxhelper.git
synced 2024-11-05 18:09:24 +08:00
12 lines
143 B
Go
12 lines
143 B
Go
package main
|
|
|
|
import (
|
|
"go_client/tcpserver"
|
|
"log"
|
|
)
|
|
|
|
func main() {
|
|
log.SetFlags(log.LstdFlags | log.Lshortfile)
|
|
tcpserver.Listen(19099)
|
|
}
|