├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── fullprofile.go ├── fullprofile_test.go ├── jsondata.go ├── postalcodes.go ├── postalcodes_test.go ├── random_data.go ├── random_data_example_test.go └── random_data_test.go /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pallinder/go-randomdata/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pallinder/go-randomdata/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pallinder/go-randomdata/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pallinder/go-randomdata/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pallinder/go-randomdata/HEAD/README.md -------------------------------------------------------------------------------- /fullprofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pallinder/go-randomdata/HEAD/fullprofile.go -------------------------------------------------------------------------------- /fullprofile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pallinder/go-randomdata/HEAD/fullprofile_test.go -------------------------------------------------------------------------------- /jsondata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pallinder/go-randomdata/HEAD/jsondata.go -------------------------------------------------------------------------------- /postalcodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pallinder/go-randomdata/HEAD/postalcodes.go -------------------------------------------------------------------------------- /postalcodes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pallinder/go-randomdata/HEAD/postalcodes_test.go -------------------------------------------------------------------------------- /random_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pallinder/go-randomdata/HEAD/random_data.go -------------------------------------------------------------------------------- /random_data_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pallinder/go-randomdata/HEAD/random_data_example_test.go -------------------------------------------------------------------------------- /random_data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pallinder/go-randomdata/HEAD/random_data_test.go --------------------------------------------------------------------------------