shad-go/retryupdate/update.go

10 lines
234 B
Go
Raw Normal View History

2020-03-07 19:14:49 +00:00
// +build !solution
package retryupdate
import "gitlab.com/slon/shad-go/retryupdate/kvapi"
func UpdateValue(c kvapi.Client, key string, updateFn func(oldValue *string) (newValue string, err error)) error {
panic("implement me")
}