aboutsummaryrefslogtreecommitdiff
path: root/Types.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Types.hs')
-rw-r--r--Types.hs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Types.hs b/Types.hs
new file mode 100644
index 000000000..df9588027
--- /dev/null
+++ b/Types.hs
@@ -0,0 +1,14 @@
+{- git-annex core data types -}
+
+module Types (
+ State(..)
+) where
+
+import BackendType
+import GitRepo
+
+-- git-annex's runtime state
+data State = State {
+ repo :: GitRepo,
+ backends :: [Backend]
+}