mirror of
https://github.com/go-micro/go-micro.git
synced 2025-11-23 21:44:41 +02:00
18 lines
346 B
Go
18 lines
346 B
Go
|
|
package nats
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
|
||
|
|
"go-micro.dev/v5/broker"
|
||
|
|
)
|
||
|
|
|
||
|
|
// setBrokerOption returns a function to setup a context with given value.
|
||
|
|
func setBrokerOption(k, v interface{}) broker.Option {
|
||
|
|
return func(o *broker.Options) {
|
||
|
|
if o.Context == nil {
|
||
|
|
o.Context = context.Background()
|
||
|
|
}
|
||
|
|
o.Context = context.WithValue(o.Context, k, v)
|
||
|
|
}
|
||
|
|
}
|