README ¶ configure A config manager for Go applications. Expand ▾ Collapse ▴ Documentation ¶ Index ¶ Variables type ILoader func NewLoader() ILoader Constants ¶ This section is empty. Variables ¶ View Source var ( // ErrNotPointerToStruct is returned when the provided target is not pointer to struct. ErrNotPointerToStruct = errors.New("target should be pointer to struct") ) Functions ¶ This section is empty. Types ¶ type ILoader ¶ type ILoader interface { // Load accepts pointer to a struct and loads the config into it. Load(target interface{}) error } ILoader abstracts a configuration loader. func NewLoader ¶ func NewLoader() ILoader NewLoader creates and returns a new Loader. Source Files ¶ View all Source files configure.goerror.gofield.goloader.goutils.go Directories ¶ Show internal Expand all Path Synopsis cmdparams Click to show internal directories. Click to hide internal directories.