mirror of
https://github.com/rancher/norman.git
synced 2025-09-27 07:34:37 +00:00
Update vendor
This commit is contained in:
24
vendor/github.com/ibuildthecloud/kvsql/clientv3/driver/client.go
generated
vendored
Normal file
24
vendor/github.com/ibuildthecloud/kvsql/clientv3/driver/client.go
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
package driver
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
var (
|
||||
ErrExists = errors.New("key exists")
|
||||
ErrNotExists = errors.New("key and or Revision does not exists")
|
||||
ErrRevisionMatch = errors.New("revision does not match")
|
||||
)
|
||||
|
||||
type KeyValue struct {
|
||||
ID int64
|
||||
Key string
|
||||
Value []byte
|
||||
OldValue []byte
|
||||
OldRevision int64
|
||||
CreateRevision int64
|
||||
Revision int64
|
||||
TTL int64
|
||||
Version int64
|
||||
Del int64
|
||||
}
|
Reference in New Issue
Block a user