1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-05 10:20:53 +02:00
go-micro/config/source/flag/options.go

21 lines
453 B
Go
Raw Normal View History

2019-05-31 00:11:13 +02:00
package flag
import (
"context"
2021-10-12 13:55:53 +02:00
"go-micro.dev/v4/config/source"
2019-05-31 00:11:13 +02:00
)
type includeUnsetKey struct{}
// IncludeUnset toggles the loading of unset flags and their respective default values.
// Default behavior is to ignore any unset flags.
func IncludeUnset(b bool) source.Option {
return func(o *source.Options) {
if o.Context == nil {
o.Context = context.Background()
}
o.Context = context.WithValue(o.Context, includeUnsetKey{}, true)
}
}