aboutsummaryrefslogtreecommitdiff
path: root/Types.hs
diff options
context:
space:
mode:
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