You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Open-IM-Server/cmd/rpc/open_im_cache/main.go

19 lines
400 B

3 years ago
package main
import (
rpcCache "Open_IM/internal/rpc/cache"
"Open_IM/pkg/common/config"
3 years ago
"flag"
"fmt"
)
func main() {
defaultPorts := config.Config.RpcPort.OpenImCachePort
rpcPort := flag.Int("port", defaultPorts[0], "RpcToken default listen port 10800")
3 years ago
flag.Parse()
fmt.Println("start auth rpc server, port: ", *rpcPort)
3 years ago
rpcServer := rpcCache.NewCacheServer(*rpcPort)
3 years ago
rpcServer.Run()
}