File tree 6 files changed +22
-73
lines changed
6 files changed +22
-73
lines changed Original file line number Diff line number Diff line change
1
+ // Package retry provides the most advanced interruptible mechanism
2
+ // to perform actions repetitively until successful.
3
+ //
4
+ // The retry based on https://github.com/Rican7/retry but fully reworked
5
+ // and focused on integration with the https://github.com/kamilsk/breaker
6
+ // and the built-in https://pkg.go.dev/context package.
7
+ package retry
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- package retry_test
1
+ package examples_test
2
2
3
3
import (
4
4
"context"
Original file line number Diff line number Diff line change
1
+ // Package examples contains extended documentation
2
+ // for github.com/kamilsk/retry/v5 module.
3
+ //
4
+ // It contains examples of usage with additional
5
+ // dependencies that are not needed by the module.
6
+ package examples
Original file line number Diff line number Diff line change
1
+ module github.com/kamilsk/retry/examples
2
+
3
+ go 1.13
4
+
5
+ require github.com/kamilsk/retry/v5 v5.0.0-rc8
6
+
7
+ replace github.com/kamilsk/retry/v5 => ../
Original file line number Diff line number Diff line change
1
+ package examples_test
You can’t perform that action at this time.
0 commit comments