gitextract_89bd1yif/ ├── .editorconfig ├── .envrc ├── .github/ │ ├── .editorconfig │ ├── dependabot.yaml │ └── workflows/ │ ├── analysis-scorecard.yaml │ └── ci.yaml ├── .gitignore ├── .golangci.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── decode_hooks.go ├── decode_hooks_test.go ├── devenv.nix ├── devenv.yaml ├── errors.go ├── go.mod ├── internal/ │ └── errors/ │ ├── errors.go │ ├── join.go │ └── join_go1_19.go ├── mapstructure.go ├── mapstructure_benchmark_test.go ├── mapstructure_bugs_test.go ├── mapstructure_examples_test.go ├── mapstructure_test.go ├── reflect_go1_19.go └── reflect_go1_20.go