shad-go/retryupdate/update.go

10 lines
235 B
Go
Raw Normal View History

2022-02-10 22:06:57 +00:00
//go:build !solution
2020-03-07 19:14:49 +00:00
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")
}