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.
|
package main
|
|
|
|
import (
|
|
"Open_IM/internal/rpc/group"
|
|
"Open_IM/internal/startrpc"
|
|
"Open_IM/pkg/common/config"
|
|
)
|
|
|
|
func main() {
|
|
startrpc.Start(config.Config.RpcPort.OpenImGroupPort, config.Config.RpcRegisterName.OpenImGroupName, config.Config.Prometheus.GroupPrometheusPort, group.Start)
|
|
}
|