mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
14 lines
243 B
Go
14 lines
243 B
Go
package main
|
|
|
|
import (
|
|
"Open_IM/internal/rpc/group"
|
|
"flag"
|
|
)
|
|
|
|
func main() {
|
|
rpcPort := flag.Int("port", 10500, "get RpcGroupPort from cmd,default 16000 as port")
|
|
flag.Parse()
|
|
rpcServer := group.NewGroupServer(*rpcPort)
|
|
rpcServer.Run()
|
|
}
|