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.
24 lines
609 B
24 lines
609 B
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/OpenIMSDK/Open-IM-Server/internal/rpc/third"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("#######################################")
|
|
rpcCmd := cmd.NewRpcCmd("third")
|
|
rpcCmd.AddPortFlag()
|
|
rpcCmd.AddPrometheusPortFlag()
|
|
if err := rpcCmd.Exec(); err != nil {
|
|
panic(err.Error())
|
|
}
|
|
name := config.Config.RpcRegisterName.OpenImThirdName
|
|
fmt.Println("StartThirdRpc", "name:", name)
|
|
if err := rpcCmd.StartSvr(name, third.Start); err != nil {
|
|
panic(err.Error())
|
|
}
|
|
}
|