1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-11-23 21:44:41 +02:00

Adjusting names

This commit is contained in:
Scott Finlay
2016-11-07 09:40:11 +01:00
parent d7e4062a0e
commit 092d17a74e
5 changed files with 16 additions and 30 deletions

8
client/retry.go Normal file
View File

@@ -0,0 +1,8 @@
package client
type RetryFunc func(err error) bool
// always retry on error
func alwaysRetry(err error) bool {
return true
}