├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── client.go ├── client_test.go ├── go.mod ├── go.sum ├── roundtripper.go └── roundtripper_test.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/go-retryablehttp/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | *.test 4 | .vscode/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/go-retryablehttp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/go-retryablehttp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/go-retryablehttp/HEAD/README.md -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/go-retryablehttp/HEAD/client.go -------------------------------------------------------------------------------- /client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/go-retryablehttp/HEAD/client_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/go-retryablehttp/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/go-retryablehttp/HEAD/go.sum -------------------------------------------------------------------------------- /roundtripper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/go-retryablehttp/HEAD/roundtripper.go -------------------------------------------------------------------------------- /roundtripper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/go-retryablehttp/HEAD/roundtripper_test.go --------------------------------------------------------------------------------