fix: delete redundant type conversion (#1977)

pull/1979/head
witt 3 years ago committed by GitHub
parent bc9d2074af
commit ddc82ce45e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      contrib/config/consul/config.go
  2. 14
      contrib/config/etcd/config.go

@ -20,9 +20,9 @@ type options struct {
// WithContext with registry context.
func WithContext(ctx context.Context) Option {
return Option(func(o *options) {
return func(o *options) {
o.ctx = ctx
})
}
}
// WithPath is config path

@ -19,25 +19,25 @@ type options struct {
prefix bool
}
// WithContext with registry context.
// WithContext with registry context.
func WithContext(ctx context.Context) Option {
return Option(func(o *options) {
return func(o *options) {
o.ctx = ctx
})
}
}
// WithPath is config path
func WithPath(p string) Option {
return Option(func(o *options) {
return func(o *options) {
o.path = p
})
}
}
// WithPrefix is config prefix
func WithPrefix(prefix bool) Option {
return Option(func(o *options) {
return func(o *options) {
o.prefix = prefix
})
}
}
type source struct {

Loading…
Cancel
Save