aboutsummaryrefslogtreecommitdiff
path: root/Types.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-12 16:10:15 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-12 16:10:15 -0400
commit20acda0423b1a00eae64296835679887ca79ea2f (patch)
tree3520f9c0b8a6ccffd17d23cd7f9962d5f28be54e /Types.hs
parent2ac47a3a59b2b9b8980b4a9d3277bcb653bcb026 (diff)
more state
Diffstat (limited to 'Types.hs')
-rw-r--r--Types.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Types.hs b/Types.hs
index de6bff9ff..26ba2a904 100644
--- a/Types.hs
+++ b/Types.hs
@@ -26,9 +26,9 @@ data Backend = Backend {
-- stores a file's contents to a key
storeFileKey :: State -> FilePath -> Key -> IO Bool,
-- retrieves a key's contents to a file
- retrieveKeyFile :: Key -> FilePath -> IO Bool,
+ retrieveKeyFile :: State -> Key -> FilePath -> IO Bool,
-- removes a key
- removeKey :: Key -> IO Bool
+ removeKey :: State -> Key -> IO Bool
}
instance Show Backend where