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.
12 lines
326 B
12 lines
326 B
package main
|
|
|
|
import (
|
|
"Open_IM/internal/rpc/conversation"
|
|
"Open_IM/internal/startrpc"
|
|
"Open_IM/pkg/common/config"
|
|
)
|
|
|
|
func main() {
|
|
startrpc.Start(config.Config.RpcPort.OpenImConversationPort, config.Config.RpcRegisterName.OpenImConversationName, config.Config.Prometheus.ConversationPrometheusPort, conversation.Start)
|
|
}
|