├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── README.md ├── config.toml └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatias/viper-toml-unmarshal/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatias/viper-toml-unmarshal/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatias/viper-toml-unmarshal/HEAD/README.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatias/viper-toml-unmarshal/HEAD/config.toml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmatias/viper-toml-unmarshal/HEAD/main.go --------------------------------------------------------------------------------