├── .gitignore ├── LICENSE ├── README.md ├── config.go ├── config_test.go ├── doc.go └── wercker.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olebedev/config/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olebedev/config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olebedev/config/HEAD/README.md -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olebedev/config/HEAD/config.go -------------------------------------------------------------------------------- /config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olebedev/config/HEAD/config_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olebedev/config/HEAD/doc.go -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/golang@1.1.1 2 | --------------------------------------------------------------------------------