Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrNotFound = errors.New("key not found") // ErrNotFound is key not found error.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config interface { Load() error Scan(v any) error Value(key string) Value Watch(key string, o Observer) error Close() error }
Config is config interface
type Option ¶
type Option func(*options)
Option configs the options
func WithDecoder ¶
WithDecoder with config decoder. DefaultDecoder behavior: If KeyValue.Format is non-empty, then KeyValue.Value will be deserialized into map[string]any and stored in the config cache(map[string]any) if KeyValue.Format is empty,{KeyValue.Key : KeyValue.Value} will be stored in config cache(map[string]any)
func WithResolveActualTypes ¶
WithResolveActualTypes with config resolver. bool input will enable conversion of config to data types
type Reader ¶
type Reader interface { Merge(...*KeyValue) error Value(string) (Value, bool) Source() ([]byte, error) Resolve() error }
Reader is config reader.
Click to show internal directories.
Click to hide internal directories.