Files
open-im-server/cmd/rpc/open_im_auth/main.go
T

15 lines
242 B
Go
Raw Normal View History

2021-05-26 19:40:38 +08:00
package main
import (
2021-10-11 21:51:37 +08:00
rpcAuth "Open_IM/internal/rpc/auth"
2021-05-26 19:40:38 +08:00
"flag"
)
func main() {
rpcPort := flag.Int("port", 10600, "RpcToken default listen port 10800")
flag.Parse()
rpcServer := rpcAuth.NewRpcAuthServer(*rpcPort)
rpcServer.Run()
2021-12-30 17:27:11 +08:00
2021-05-26 19:40:38 +08:00
}