1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-24 10:07:04 +02:00
go-micro/config/source/file/options.go

20 lines
348 B
Go
Raw Normal View History

2019-05-31 00:11:13 +02:00
package file
import (
"context"
"github.com/asim/go-micro/v3/config/source"
2019-05-31 00:11:13 +02:00
)
type filePathKey struct{}
// WithPath sets the path to file
func WithPath(p string) source.Option {
return func(o *source.Options) {
if o.Context == nil {
o.Context = context.Background()
}
o.Context = context.WithValue(o.Context, filePathKey{}, p)
}
}