summaryrefslogtreecommitdiff
path: root/BackendList.hs
diff options
context:
space:
mode:
Diffstat (limited to 'BackendList.hs')
-rw-r--r--BackendList.hs19
1 files changed, 0 insertions, 19 deletions
diff --git a/BackendList.hs b/BackendList.hs
deleted file mode 100644
index e4e1d76fe..000000000
--- a/BackendList.hs
+++ /dev/null
@@ -1,19 +0,0 @@
-{- git-annex backend list
- -
- - Copyright 2010 Joey Hess <joey@kitenet.net>
- -
- - Licensed under the GNU GPL version 3 or higher.
- -}
-
-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.SHA
-import Types
-
-allBackends :: [Backend Annex]
-allBackends = concat
- [ Backend.WORM.backends
- , Backend.SHA.backends
- ]