21 lines
376 B
Go
21 lines
376 B
Go
package nats
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/micro/go-micro/broker"
|
|
"github.com/nats-io/go-nats"
|
|
)
|
|
|
|
type optionsKey struct{}
|
|
|
|
// Options accepts nats.Options
|
|
func Options(opts nats.Options) broker.Option {
|
|
return func(o *broker.Options) {
|
|
if o.Context == nil {
|
|
o.Context = context.Background()
|
|
}
|
|
o.Context = context.WithValue(o.Context, optionsKey{}, opts)
|
|
}
|
|
}
|