summaryrefslogtreecommitdiff
blob: 126a0564b4dbc357d5b10c54ae25cedef55da5cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/Data/FileStore/Types.hs b/Data/FileStore/Types.hs
index e950c7a..e116761 100644
--- a/Data/FileStore/Types.hs
+++ b/Data/FileStore/Types.hs
@@ -152,3 +152,3 @@ data FileStore = FileStore {
     -- | Save contents in the filestore.
-  , save           :: Contents a
+  , save           :: forall a . Contents a
                    => FilePath          -- Resource to save.
@@ -160,3 +160,3 @@ data FileStore = FileStore {
     -- | Retrieve the contents of the named resource.
-  , retrieve       :: Contents a
+  , retrieve       :: forall a . Contents a
                    => FilePath          -- Resource to retrieve.