├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── mapreader.go └── mapreader_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manterfield/go-mapreader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manterfield/go-mapreader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manterfield/go-mapreader/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/manterfield/go-mapreader 2 | 3 | go 1.22.0 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapreader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manterfield/go-mapreader/HEAD/mapreader.go -------------------------------------------------------------------------------- /mapreader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manterfield/go-mapreader/HEAD/mapreader_test.go --------------------------------------------------------------------------------