shad-go/retryupdate/update.go
2023-10-03 20:25:41 +03:00

9 lines
246 B
Go

//go:build !solution
package retryupdate
import "gitlab.com/manytask/itmo-go/public/retryupdate/kvapi"
func UpdateValue(c kvapi.Client, key string, updateFn func(oldValue *string) (newValue string, err error)) error {
panic("implement me")
}