6 lines
346 B
Go
6 lines
346 B
Go
// Package multiconfig provides a way to load and read configurations from
|
|
// multiple sources. You can read from TOML file, JSON file, YAML file, Environment
|
|
// Variables and flags. You can set the order of reader with MultiLoader. Package
|
|
// is extensible, you can add your custom Loader by implementing the Load interface.
|
|
package multiconfig
|