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