This commit is contained in:
wenxu12345
2022-04-06 15:33:16 +08:00
parent 83228d8aa6
commit ef4d0c3c42
15 changed files with 38 additions and 3 deletions
+2 -1
View File
@@ -3,12 +3,13 @@ package main
import (
rpcMessageCMS "Open_IM/internal/rpc/admin_cms"
"flag"
"fmt"
)
func main() {
rpcPort := flag.Int("port", 11000, "rpc listening port")
flag.Parse()
fmt.Println("start cms rpc server, port: ", *rpcPort)
rpcServer := rpcMessageCMS.NewAdminCMSServer(*rpcPort)
rpcServer.Run()
}