shad-go/retryupdate/update.go
2020-03-07 22:14:49 +03:00

9 lines
234 B
Go

// +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")
}