This commit is contained in:
wangchuxiao
2022-02-09 00:45:23 +08:00
parent 02aad295f9
commit 43a9bba96f
8 changed files with 567 additions and 248 deletions
+13
View File
@@ -0,0 +1,13 @@
package main
import (
rpcMessageCMS "Open_IM/internal/rpc/message_cms"
"flag"
)
func main() {
rpcPort := flag.Int("port", 11200, "rpc listening port")
flag.Parse()
rpcServer := rpcMessageCMS.NewMessageCMSServer(*rpcPort)
rpcServer.Run()
}