├── Doc ├── AUTHORS.md ├── CONTRIBUTORS.md ├── LICENSE_Apache.txt └── NEWS.md ├── README.md ├── all_test.go ├── config.go ├── error.go ├── option.go ├── read.go ├── section.go ├── testdata ├── source.cfg └── target.cfg ├── type.go └── write.go /Doc/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larspensjo/config/HEAD/Doc/AUTHORS.md -------------------------------------------------------------------------------- /Doc/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larspensjo/config/HEAD/Doc/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Doc/LICENSE_Apache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larspensjo/config/HEAD/Doc/LICENSE_Apache.txt -------------------------------------------------------------------------------- /Doc/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larspensjo/config/HEAD/Doc/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larspensjo/config/HEAD/README.md -------------------------------------------------------------------------------- /all_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larspensjo/config/HEAD/all_test.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larspensjo/config/HEAD/config.go -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larspensjo/config/HEAD/error.go -------------------------------------------------------------------------------- /option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larspensjo/config/HEAD/option.go -------------------------------------------------------------------------------- /read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larspensjo/config/HEAD/read.go -------------------------------------------------------------------------------- /section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larspensjo/config/HEAD/section.go -------------------------------------------------------------------------------- /testdata/source.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larspensjo/config/HEAD/testdata/source.cfg -------------------------------------------------------------------------------- /testdata/target.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larspensjo/config/HEAD/testdata/target.cfg -------------------------------------------------------------------------------- /type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larspensjo/config/HEAD/type.go -------------------------------------------------------------------------------- /write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larspensjo/config/HEAD/write.go --------------------------------------------------------------------------------