diff options
author | Wim <wim@42.be> | 2018-08-06 21:47:05 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2018-08-06 21:47:05 +0200 |
commit | 51062863a5c34d81e296cf15c61140911037cf3b (patch) | |
tree | 9b5e044672486326c7a0ca8fb26430f37bf4d83c /vendor/github.com/xordataexchange/crypt/backend/backend.go | |
parent | 4fb4b7aa6c02a54db8ad8dd98e4d321396926c0d (diff) | |
download | matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.tar.gz matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.tar.bz2 matterbridge-msglm-51062863a5c34d81e296cf15c61140911037cf3b.zip |
Use mod vendor for vendored directory (backwards compatible)
Diffstat (limited to 'vendor/github.com/xordataexchange/crypt/backend/backend.go')
-rw-r--r-- | vendor/github.com/xordataexchange/crypt/backend/backend.go | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/vendor/github.com/xordataexchange/crypt/backend/backend.go b/vendor/github.com/xordataexchange/crypt/backend/backend.go deleted file mode 100644 index bfe894dc..00000000 --- a/vendor/github.com/xordataexchange/crypt/backend/backend.go +++ /dev/null @@ -1,32 +0,0 @@ -// Package backend provides the K/V store interface for crypt backends. -package backend - -// Response represents a response from a backend store. -type Response struct { - Value []byte - Error error -} - -// KVPair holds both a key and value when reading a list. -type KVPair struct { - Key string - Value []byte -} - -type KVPairs []*KVPair - -// A Store is a K/V store backend that retrieves and sets, and monitors -// data in a K/V store. -type Store interface { - // Get retrieves a value from a K/V store for the provided key. - Get(key string) ([]byte, error) - - // List retrieves all keys and values under a provided key. - List(key string) (KVPairs, error) - - // Set sets the provided key to value. - Set(key string, value []byte) error - - // Watch monitors a K/V store for changes to key. - Watch(key string, stop chan bool) <-chan *Response -} |