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.
17 lines
413 B
17 lines
413 B
package main
|
|
|
|
import (
|
|
"OpenIM/internal/rpc/third"
|
|
"OpenIM/internal/startrpc"
|
|
"OpenIM/pkg/common/config"
|
|
)
|
|
|
|
func main() {
|
|
if err := config.InitConfig(""); err != nil {
|
|
panic(err.Error())
|
|
}
|
|
if err := startrpc.Start(config.Config.RpcPort.OpenImThirdPort[0], config.Config.RpcRegisterName.OpenImThirdName, config.Config.Prometheus.ThirdPrometheusPort[0], third.Start); err != nil {
|
|
panic(err.Error())
|
|
}
|
|
}
|