summaryrefslogtreecommitdiff
path: root/BackendList.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-11 17:52:46 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-11 17:52:46 -0400
commitebc3fbe9ae2c5cc52332c77a92697c2517ce8263 (patch)
treef65c38ab3d452c0cde3d0d3b968c216f1ee30705 /BackendList.hs
parentaf82586adff96f18fe768e432f501c647401262f (diff)
explicit exports
Diffstat (limited to 'BackendList.hs')
-rw-r--r--BackendList.hs8
1 files changed, 6 insertions, 2 deletions
diff --git a/BackendList.hs b/BackendList.hs
index c3a1b13a1..f733a44be 100644
--- a/BackendList.hs
+++ b/BackendList.hs
@@ -1,9 +1,13 @@
{- git-annex backend list
- -}
-module BackendList where
+module BackendList (
+ supportedBackends,
+ parseBackendList,
+ lookupBackendName
+) where
-import Backend
+import BackendType
-- When adding a new backend, import it here and add it to the list.
import qualified BackendFile