├── .github └── workflows │ └── test.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── decode_hooks.go ├── decode_hooks_test.go ├── error.go ├── go.mod ├── mapstructure.go ├── mapstructure_benchmark_test.go ├── mapstructure_bugs_test.go ├── mapstructure_examples_test.go └── mapstructure_test.go /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/mapstructure/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/mapstructure/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/mapstructure/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/mapstructure/HEAD/README.md -------------------------------------------------------------------------------- /decode_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/mapstructure/HEAD/decode_hooks.go -------------------------------------------------------------------------------- /decode_hooks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/mapstructure/HEAD/decode_hooks_test.go -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/mapstructure/HEAD/error.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /mapstructure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/mapstructure/HEAD/mapstructure.go -------------------------------------------------------------------------------- /mapstructure_benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/mapstructure/HEAD/mapstructure_benchmark_test.go -------------------------------------------------------------------------------- /mapstructure_bugs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/mapstructure/HEAD/mapstructure_bugs_test.go -------------------------------------------------------------------------------- /mapstructure_examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/mapstructure/HEAD/mapstructure_examples_test.go -------------------------------------------------------------------------------- /mapstructure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/mapstructure/HEAD/mapstructure_test.go --------------------------------------------------------------------------------