├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── decoder.go ├── decoder_test.go ├── go.mod └── go.sum /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabiv/xml2map/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabiv/xml2map/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabiv/xml2map/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabiv/xml2map/HEAD/README.md -------------------------------------------------------------------------------- /decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabiv/xml2map/HEAD/decoder.go -------------------------------------------------------------------------------- /decoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabiv/xml2map/HEAD/decoder_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabiv/xml2map/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbabiv/xml2map/HEAD/go.sum --------------------------------------------------------------------------------