├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cmd └── gospin │ └── main.go ├── coverage.out ├── go.mod ├── go.sum ├── gospin.go └── gospin_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/gospin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/gospin/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/gospin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/gospin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/gospin/HEAD/README.md -------------------------------------------------------------------------------- /cmd/gospin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/gospin/HEAD/cmd/gospin/main.go -------------------------------------------------------------------------------- /coverage.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/gospin/HEAD/coverage.out -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/gospin/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/gospin/HEAD/go.sum -------------------------------------------------------------------------------- /gospin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/gospin/HEAD/gospin.go -------------------------------------------------------------------------------- /gospin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/gospin/HEAD/gospin_test.go --------------------------------------------------------------------------------