config

package
v2.0.0-alpha1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 28, 2023 License: MIT Imports: 6 Imported by: 0

Documentation

Index

Constants

View Source
const (
	OpUnmarshalKey errs.Op = "configurer: unmarshal key"
	OpUnmarshal    errs.Op = "configurer: unmarshal"
	OpOverwrite    errs.Op = "configurer: overwrite"
)

Variables

This section is empty.

Functions

func UnmarshalKey

func UnmarshalKey[T any](cfg Configurer, key string) (value T, err error)

func UnmarshalKeyE

func UnmarshalKeyE[T any](cfg Configurer, key string) (value T, err error)

Types

type Configurer

type Configurer interface {
	// UnmarshalKey takes a single key and unmarshal it into a Struct.
	UnmarshalKey(name string, out any) error

	// Unmarshal the config into a Struct. Make sure that the tags
	// on the fields of the structure are properly set.
	Unmarshal(out any) error

	// Overwrite used to overwrite particular values in the unmarshalled config
	Overwrite(values map[string]any) error

	// Get used to get config section
	Get(name string) any

	// Has checks if config section exists.
	Has(name string) bool
}

func NewConfigurer

func NewConfigurer(cfgFile, prefix string) Configurer

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL