This commit is contained in:
withchao
2023-03-28 15:14:14 +08:00
parent ca04748862
commit e27be8f698
2 changed files with 2 additions and 9 deletions
+1 -5
View File
@@ -1,23 +1,19 @@
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 {
if err := rpcCmd.StartSvr(config.Config.RpcRegisterName.OpenImThirdName, third.Start); err != nil {
panic(err.Error())
}
}