micro/config/source/service/options.go

39 lines
808 B
Go
Raw Normal View History

package service
2020-01-16 19:10:15 +03:00
import (
"context"
"github.com/micro/go-micro/v2/config/source"
2020-01-16 19:10:15 +03:00
)
type serviceNameKey struct{}
2020-03-12 01:31:24 +03:00
type namespaceKey struct{}
2020-01-20 13:31:18 +03:00
type pathKey struct{}
2020-01-16 19:10:15 +03:00
2020-01-20 13:31:18 +03:00
func ServiceName(name string) source.Option {
2020-01-16 19:10:15 +03:00
return func(o *source.Options) {
if o.Context == nil {
o.Context = context.Background()
}
2020-01-20 13:31:18 +03:00
o.Context = context.WithValue(o.Context, serviceNameKey{}, name)
}
}
2020-03-12 01:31:24 +03:00
func Namespace(namespace string) source.Option {
2020-01-20 13:31:18 +03:00
return func(o *source.Options) {
if o.Context == nil {
o.Context = context.Background()
}
2020-03-12 01:31:24 +03:00
o.Context = context.WithValue(o.Context, namespaceKey{}, namespace)
2020-01-20 13:31:18 +03:00
}
}
func Path(path string) source.Option {
return func(o *source.Options) {
if o.Context == nil {
o.Context = context.Background()
}
o.Context = context.WithValue(o.Context, pathKey{}, path)
2020-01-16 19:10:15 +03:00
}
}