mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-18 08:26:38 +02:00
d94936f6c9
* v3 * revert plugins * fixup some issues
20 lines
348 B
Go
20 lines
348 B
Go
package file
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/asim/go-micro/v3/config/source"
|
|
)
|
|
|
|
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)
|
|
}
|
|
}
|