summaryrefslogtreecommitdiffhomepage
path: root/Storage.hs
diff options
context:
space:
mode:
authorJoey Hess <joeyh@joeyh.name>2016-08-12 05:00:17 -0400
committerJoey Hess <joeyh@joeyh.name>2016-08-12 05:00:17 -0400
commit0045c4b162d2a68a85b8e7844dca97834f888dd5 (patch)
tree12cff1c993008797edf261aa18d529bc1fb32954 /Storage.hs
parentf74151ead49895f86257c9abfbe90c027d91d456 (diff)
downloadkeysafe-0045c4b162d2a68a85b8e7844dca97834f888dd5.tar.gz
separate error code for already exsisting object store
Diffstat (limited to 'Storage.hs')
-rw-r--r--Storage.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Storage.hs b/Storage.hs
index cb0e323..d13cbfe 100644
--- a/Storage.hs
+++ b/Storage.hs
@@ -16,7 +16,7 @@ data Storage = Storage
, countShards :: IO CountResult
} -- Note that there is no interface to enumerate shards.
-data StoreResult = StoreSuccess | StoreFailure String
+data StoreResult = StoreSuccess | StoreAlreadyExists | StoreFailure String
deriving (Show)
data RetrieveResult = RetrieveSuccess Shard | RetrieveFailure String