Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# retry-go: Production Retry Logic for Go
# retry: Production Retry Logic for Go

[![Release](https://img.shields.io/github/release/codeGROOVE-dev/retry-go.svg?style=flat-square)](https://github.com/codeGROOVE-dev/retry-go/releases/latest)
[![Release](https://img.shields.io/github/release/codeGROOVE-dev/retry.svg?style=flat-square)](https://github.com/codeGROOVE-dev/retry/releases/latest)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
[![Go Report Card](https://goreportcard.com/badge/github.com/codeGROOVE-dev/retry-go?style=flat-square)](https://goreportcard.com/report/github.com/codeGROOVE-dev/retry-go)
[![Go Reference](https://pkg.go.dev/badge/github.com/codeGROOVE-dev/retry-go.svg)](https://pkg.go.dev/github.com/codeGROOVE-dev/retry-go)
[![Go Report Card](https://goreportcard.com/badge/github.com/codeGROOVE-dev/retry?style=flat-square)](https://goreportcard.com/report/github.com/codeGROOVE-dev/retry)
[![Go Reference](https://pkg.go.dev/badge/github.com/codeGROOVE-dev/retry.svg)](https://pkg.go.dev/github.com/codeGROOVE-dev/retry)

**Zero dependencies. Memory-bounded. No goroutine leaks. No panics.**

Expand Down Expand Up @@ -102,14 +102,14 @@ retry.AttemptsForError(5, ErrServiceUnavailable) // More retries for 503s
Requires Go 1.22 or higher.

```bash
go get github.com/codeGROOVE-dev/retry-go
go get github.com/codeGROOVE-dev/retry
```

## Documentation

- [API Docs](https://pkg.go.dev/github.com/codeGROOVE-dev/retry-go)
- [Examples](https://github.com/codeGROOVE-dev/retry-go/tree/master/examples)
- [Tests](https://github.com/codeGROOVE-dev/retry-go/tree/master/retry_test.go)
- [API Docs](https://pkg.go.dev/github.com/codeGROOVE-dev/retry)
- [Examples](https://github.com/codeGROOVE-dev/retry/tree/master/examples)
- [Tests](https://github.com/codeGROOVE-dev/retry/tree/master/retry_test.go)

---

Expand Down
Loading