20
options.go
Normal file
20
options.go
Normal file
@@ -0,0 +1,20 @@
|
||||
package service
|
||||
|
||||
import (
|
||||
"github.com/unistack-org/micro/v3/broker"
|
||||
"github.com/unistack-org/micro/v3/client"
|
||||
)
|
||||
|
||||
type clientKey struct{}
|
||||
|
||||
// Client to call broker service
|
||||
func Client(c client.Client) broker.Option {
|
||||
return broker.SetOption(clientKey{}, c)
|
||||
}
|
||||
|
||||
type serviceKey struct{}
|
||||
|
||||
// Service to call broker service
|
||||
func Service(name string) broker.Option {
|
||||
return broker.SetOption(serviceKey{}, name)
|
||||
}
|
Reference in New Issue
Block a user