mirror of
https://github.com/go-micro/go-micro.git
synced 2024-11-24 08:02:32 +02:00
32 lines
528 B
Go
32 lines
528 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"github.com/myodc/go-micro/broker"
|
||
|
"github.com/myodc/go-micro/registry"
|
||
|
"github.com/myodc/go-micro/transport"
|
||
|
)
|
||
|
|
||
|
type options struct {
|
||
|
broker broker.Broker
|
||
|
registry registry.Registry
|
||
|
transport transport.Transport
|
||
|
}
|
||
|
|
||
|
func Broker(b broker.Broker) Option {
|
||
|
return func(o *options) {
|
||
|
o.broker = b
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func Registry(r registry.Registry) Option {
|
||
|
return func(o *options) {
|
||
|
o.registry = r
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func Transport(t transport.Transport) Option {
|
||
|
return func(o *options) {
|
||
|
o.transport = t
|
||
|
}
|
||
|
}
|