├── .circleci └── config.yml ├── .github └── workflows │ └── go.yml ├── .typos.toml ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── conf.go ├── conf_test.go ├── doc.go ├── fields.go ├── go.mod ├── go.sum ├── sources.go ├── usage.go └── yaml └── yaml.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardanlabs/conf/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardanlabs/conf/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardanlabs/conf/HEAD/.typos.toml -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardanlabs/conf/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardanlabs/conf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardanlabs/conf/HEAD/README.md -------------------------------------------------------------------------------- /conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardanlabs/conf/HEAD/conf.go -------------------------------------------------------------------------------- /conf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardanlabs/conf/HEAD/conf_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardanlabs/conf/HEAD/doc.go -------------------------------------------------------------------------------- /fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardanlabs/conf/HEAD/fields.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardanlabs/conf/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardanlabs/conf/HEAD/go.sum -------------------------------------------------------------------------------- /sources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardanlabs/conf/HEAD/sources.go -------------------------------------------------------------------------------- /usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardanlabs/conf/HEAD/usage.go -------------------------------------------------------------------------------- /yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardanlabs/conf/HEAD/yaml/yaml.go --------------------------------------------------------------------------------