summaryrefslogtreecommitdiff
path: root/vendor/github.com/hashicorp/terraform/vendor/github.com/hashicorp/raft/stable.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/terraform/vendor/github.com/hashicorp/raft/stable.go')
-rw-r--r--vendor/github.com/hashicorp/terraform/vendor/github.com/hashicorp/raft/stable.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/github.com/hashicorp/terraform/vendor/github.com/hashicorp/raft/stable.go b/vendor/github.com/hashicorp/terraform/vendor/github.com/hashicorp/raft/stable.go
deleted file mode 100644
index ff59a8c5..00000000
--- a/vendor/github.com/hashicorp/terraform/vendor/github.com/hashicorp/raft/stable.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package raft
-
-// StableStore is used to provide stable storage
-// of key configurations to ensure safety.
-type StableStore interface {
- Set(key []byte, val []byte) error
-
- // Get returns the value for key, or an empty byte slice if key was not found.
- Get(key []byte) ([]byte, error)
-
- SetUint64(key []byte, val uint64) error
-
- // GetUint64 returns the uint64 value for key, or 0 if key was not found.
- GetUint64(key []byte) (uint64, error)
-}