# README
Retry - Catch Panic In Retries
Installation
To install the package, run:
go get github.com/go-zoox/retry
Getting Started
err := retry.Retry(
func() {
c++
if c < 3 {
panic("panic error")
}
},
3,
time.Millisecond,
)
License
GoZoox is released under the MIT License.
# Functions
Retry trys to run fn with times and interval.
# Variables
Version is the current version of the package.