2022-02-10 22:06:57 +00:00
|
|
|
//go:build !solution
|
2020-03-07 19:14:49 +00:00
|
|
|
|
|
|
|
package retryupdate
|
|
|
|
|
2023-10-02 19:32:41 +00:00
|
|
|
import "gitlab.com/manytask/itmo-go/private/retryupdate/kvapi"
|
2020-03-07 19:14:49 +00:00
|
|
|
|
|
|
|
func UpdateValue(c kvapi.Client, key string, updateFn func(oldValue *string) (newValue string, err error)) error {
|
|
|
|
panic("implement me")
|
|
|
|
}
|