summaryrefslogtreecommitdiff
path: root/AbstractTypes.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-14 02:12:41 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-14 02:12:41 -0400
commiteda80e44c5fb399fa4e5625388d6e0f993b0f779 (patch)
tree1c598d5db77ebc5405cac4a85282ff4fb29a2bb1 /AbstractTypes.hs
parente47dca162a0ca0144172c9a61a47d1e0b5ad04b7 (diff)
add module that only exports abstract types
Diffstat (limited to 'AbstractTypes.hs')
-rw-r--r--AbstractTypes.hs17
1 files changed, 17 insertions, 0 deletions
diff --git a/AbstractTypes.hs b/AbstractTypes.hs
new file mode 100644
index 000000000..510a37f0c
--- /dev/null
+++ b/AbstractTypes.hs
@@ -0,0 +1,17 @@
+{- git-annex data types, abstract only -}
+
+module AbstractTypes (
+ Annex,
+ AnnexState,
+ makeAnnexState,
+ runAnnexState,
+ gitAnnex,
+ gitAnnexChange,
+ backendsAnnex,
+ backendsAnnexChange,
+
+ Key,
+ Backend
+) where
+
+import Types