├── .gitignore ├── .travis.yml ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── requester.go ├── response.go ├── testflight.go ├── testflight_test.go └── ws ├── connection.go ├── errors.go ├── ws.go └── ws_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewolson/testflight/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewolson/testflight/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewolson/testflight/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewolson/testflight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewolson/testflight/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewolson/testflight/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewolson/testflight/HEAD/go.sum -------------------------------------------------------------------------------- /requester.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewolson/testflight/HEAD/requester.go -------------------------------------------------------------------------------- /response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewolson/testflight/HEAD/response.go -------------------------------------------------------------------------------- /testflight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewolson/testflight/HEAD/testflight.go -------------------------------------------------------------------------------- /testflight_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewolson/testflight/HEAD/testflight_test.go -------------------------------------------------------------------------------- /ws/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewolson/testflight/HEAD/ws/connection.go -------------------------------------------------------------------------------- /ws/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewolson/testflight/HEAD/ws/errors.go -------------------------------------------------------------------------------- /ws/ws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewolson/testflight/HEAD/ws/ws.go -------------------------------------------------------------------------------- /ws/ws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drewolson/testflight/HEAD/ws/ws_test.go --------------------------------------------------------------------------------