You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
317 B
19 lines
317 B
4 years ago
|
package main
|
||
|
|
||
|
import (
|
||
3 years ago
|
"Open_IM/internal/msg_gateway/gate"
|
||
4 years ago
|
"flag"
|
||
|
"sync"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
rpcPort := flag.Int("rpc_port", 10500, "rpc listening port")
|
||
3 years ago
|
wsPort := flag.Int("ws_port", 10800, "ws listening port")
|
||
4 years ago
|
flag.Parse()
|
||
|
var wg sync.WaitGroup
|
||
|
wg.Add(1)
|
||
|
gate.Init(*rpcPort, *wsPort)
|
||
|
gate.Run()
|
||
|
wg.Wait()
|
||
|
}
|