summaryrefslogtreecommitdiff
path: root/BackendList.hs
diff options
context:
space:
mode:
Diffstat (limited to 'BackendList.hs')
-rw-r--r--BackendList.hs14
1 files changed, 14 insertions, 0 deletions
diff --git a/BackendList.hs b/BackendList.hs
new file mode 100644
index 000000000..25f3ae5ea
--- /dev/null
+++ b/BackendList.hs
@@ -0,0 +1,14 @@
+{- git-annex backend list
+ - -}
+
+module BackendList (allBackends) where
+
+-- When adding a new backend, import it here and add it to the list.
+import qualified Backend.WORM
+import qualified Backend.SHA1
+import qualified Backend.URL
+allBackends =
+ [ Backend.WORM.backend
+ , Backend.SHA1.backend
+ , Backend.URL.backend
+ ]