delete context file

This commit is contained in:
Asim Aslam 2019-02-13 14:39:38 +00:00
parent 7cb466359f
commit f4be7d018d

View File

@ -1,17 +0,0 @@
package gossip
import (
"context"
"github.com/micro/go-micro/registry"
)
// setRegistryOption returns a function to setup a context with given value
func setRegistryOption(k, v interface{}) registry.Option {
return func(o *registry.Options) {
if o.Context == nil {
o.Context = context.Background()
}
o.Context = context.WithValue(o.Context, k, v)
}
}