2016-11-18 00:03:54 +03:00
|
|
|
package consul
|
|
|
|
|
|
|
|
import (
|
|
|
|
consul "github.com/hashicorp/consul/api"
|
|
|
|
"github.com/micro/go-micro/registry"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Config(c *consul.Config) registry.Option {
|
|
|
|
return func(o *registry.Options) {
|
|
|
|
if o.Context == nil {
|
|
|
|
o.Context = context.Background()
|
|
|
|
}
|
|
|
|
o.Context = context.WithValue(o.Context, "consul_config", c)
|
|
|
|
}
|
|
|
|
}
|
2016-11-18 03:07:12 +03:00
|
|
|
|
|
|
|
func Token(t string) registry.Option {
|
|
|
|
return func(o *registry.Options) {
|
|
|
|
if o.Context == nil {
|
|
|
|
o.Context = context.Background()
|
|
|
|
}
|
|
|
|
o.Context = context.WithValue(o.Context, "consul_token", t)
|
|
|
|
}
|
|
|
|
}
|