summaryrefslogtreecommitdiff
path: root/BackendList.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-10 18:05:37 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-10 18:05:37 -0400
commite5514e0cb0809848645814e8c1f67cd89cb16c4f (patch)
tree7041c952f9fa00fc60a40fa8e88fa1cd54818706 /BackendList.hs
parentdce9c2e0804d2c94f46dcac8c9884766bb22dcc7 (diff)
update
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
+ ]