Versions in this module Expand all Collapse all v1 v1.0.0 Jan 5, 2022 Changes in this version + type HConfig interface + Close func() error + Get func(key string) (HVal, error) + Load func() error + Watch func(event WatchEvent) error + func NewHConfig(opts ...Option) (HConfig, error) + type HVal []byte + func (h HVal) Bytes() []byte + func (h HVal) FormatJson(v interface{}) error + func (h HVal) FormatYaml(v interface{}) error + func (h HVal) String() string + type Option func(opt *options) + func UseLocal() Option + func WithDataSource(d hconf.DataSource) Option + type WatchEvent func(path string, v HVal)