Skip to content
Snippets Groups Projects
dubbo_exporter.go 338 B
Newer Older
package dubbo

fangyincheng's avatar
fangyincheng committed
import (
	"github.com/dubbo/dubbo-go/protocol"
)

type DubboExporter struct {
	protocol.BaseExporter
func NewDubboExporter(key string, invoker protocol.Invoker, exporterMap *sync.Map) *DubboExporter {
fangyincheng's avatar
fangyincheng committed
	return &DubboExporter{
		BaseExporter: *protocol.NewBaseExporter(key, invoker, exporterMap),
fangyincheng's avatar
fangyincheng committed
	}
}