summaryrefslogtreecommitdiff
path: root/Backend/URL.hs
diff options
context:
space:
mode:
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",