Versions in this module Expand all Collapse all v0 v0.0.1 May 8, 2023 Changes in this version + func Parse(configPath string, st any) error + type Elem struct + func New(configPath string) (*Elem, error) + func (e *Elem) Bool() bool + func (e *Elem) Children() map[string]*Elem + func (e *Elem) Float() float64 + func (e *Elem) Int() int + func (e *Elem) Int64() int64 + func (e *Elem) Key(key string) *Elem + func (e *Elem) Len() int + func (e *Elem) MustBool(defaultValue bool) bool + func (e *Elem) MustFloat(defaultValue float64) float64 + func (e *Elem) MustInt(defaultValue int) int + func (e *Elem) MustInt64(defaultValue int64) int64 + func (e *Elem) MustString(defaultValue string) string + func (e *Elem) Next() *Elem + func (e *Elem) Parse(st any) + func (e *Elem) String() string + type Loader interface