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..c744949b6
--- /dev/null
+++ b/BackendList.hs
@@ -0,0 +1,14 @@
+{- git-annex backend list
+ - -}
+
+module BackendList where
+
+-- When adding a new backend, import it here and add it to the list.
+import qualified BackendFile
+import qualified BackendChecksum
+import qualified BackendUrl
+supportedBackends =
+ [ BackendFile.backend
+ , BackendChecksum.backend
+ , BackendUrl.backend
+ ]