diff options
author | Joey Hess <joey@kitenet.net> | 2010-10-14 03:50:28 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-10-14 03:50:28 -0400 |
commit | 0f12bd16d829432f7b1c2efbba386262ed36fc27 (patch) | |
tree | f205d39ce599d1c25f0ce76b590a604377605a75 /BackendList.hs | |
parent | 7117702fddf521ed4f3675a91cd87119207eba02 (diff) |
subdir
Diffstat (limited to 'BackendList.hs')
-rw-r--r-- | BackendList.hs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/BackendList.hs b/BackendList.hs index 91a2fa7fc..e9f926ce2 100644 --- a/BackendList.hs +++ b/BackendList.hs @@ -10,13 +10,13 @@ module BackendList ( import BackendTypes -- When adding a new backend, import it here and add it to the list. -import qualified BackendFile -import qualified BackendChecksum -import qualified BackendUrl +import qualified Backend.File +import qualified Backend.Checksum +import qualified Backend.Url supportedBackends = - [ BackendFile.backend - , BackendChecksum.backend - , BackendUrl.backend + [ Backend.File.backend + , Backend.Checksum.backend + , Backend.Url.backend ] {- Parses a string with a list of backend names into |