19 lines
321 B
Go
19 lines
321 B
Go
package mucp
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/micro/go-micro/config/source"
|
|
)
|
|
|
|
type serviceNameKey struct{}
|
|
|
|
func ServiceName(a string) source.Option {
|
|
return func(o *source.Options) {
|
|
if o.Context == nil {
|
|
o.Context = context.Background()
|
|
}
|
|
o.Context = context.WithValue(o.Context, serviceNameKey{}, a)
|
|
}
|
|
}
|