summaryrefslogtreecommitdiff
path: root/Backend/URL.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-03-02 13:47:45 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-03-02 13:47:45 -0400
commita3daac8a8b06bbe2f35ca16cc1b27e21cad8a0e1 (patch)
treeea6bc56c9a70014279c83e1d440476a2c032d1a9 /Backend/URL.hs
parent70a6eb6d73b3e302b9b9c02342581fada25dcad9 (diff)
only enable SHA backends that configure finds support for
Diffstat (limited to 'Backend/URL.hs')
-rw-r--r--Backend/URL.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Backend/URL.hs b/Backend/URL.hs
index 864c79301..29dc8fefa 100644
--- a/Backend/URL.hs
+++ b/Backend/URL.hs
@@ -5,7 +5,7 @@
- Licensed under the GNU GPL version 3 or higher.
-}
-module Backend.URL (backend) where
+module Backend.URL (backends) where
import Control.Monad.State (liftIO)
import Data.String.Utils
@@ -15,6 +15,9 @@ import BackendTypes
import Utility
import Messages
+backends :: [Backend Annex]
+backends = [backend]
+
backend :: Backend Annex
backend = Backend {
name = "URL",