shad-go/retryupdate/update.go
2022-03-15 23:49:56 +03:00

9 lines
235 B
Go

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