This commit is contained in:
hailong
2021-05-26 19:40:38 +08:00
parent ff0e398a55
commit 26ea2cdc3d
6 changed files with 326 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package main
import (
rpcAuth "Open_IM/src/rpc/auth/auth"
"flag"
)
func main() {
rpcPort := flag.Int("port", 10600, "RpcToken default listen port 10800")
flag.Parse()
rpcServer := rpcAuth.NewRpcAuthServer(*rpcPort)
rpcServer.Run()
}