git-annex/BackendList.hs

22 lines
475 B
Haskell
Raw Normal View History

2010-10-10 22:05:37 +00:00
{- git-annex backend list
2010-10-27 20:53:54 +00:00
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
2010-10-10 22:05:37 +00:00
module BackendList (allBackends) where
2010-10-10 22:05:37 +00:00
-- When adding a new backend, import it here and add it to the list.
2010-10-15 23:33:10 +00:00
import qualified Backend.WORM
import qualified Backend.SHA
2010-10-15 23:33:10 +00:00
import qualified Backend.URL
2010-12-01 23:19:36 +00:00
import Types
2010-10-31 18:40:34 +00:00
allBackends :: [Backend Annex]
allBackends = concat
[ Backend.WORM.backends
, Backend.SHA.backends
, Backend.URL.backends
2010-10-10 22:05:37 +00:00
]