├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── geocoder.go ├── geocoder_test.go └── structs └── structs.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvins/geocoder/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvins/geocoder/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvins/geocoder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvins/geocoder/HEAD/README.md -------------------------------------------------------------------------------- /geocoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvins/geocoder/HEAD/geocoder.go -------------------------------------------------------------------------------- /geocoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvins/geocoder/HEAD/geocoder_test.go -------------------------------------------------------------------------------- /structs/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvins/geocoder/HEAD/structs/structs.go --------------------------------------------------------------------------------