aboutsummaryrefslogtreecommitdiff
path: root/BackendList.hs
blob: bc3fd8314233dd749e1e2c60a8763832cff3db82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{- git-annex backend list
 -
 - Copyright 2010 Joey Hess <joey@kitenet.net>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

module BackendList (allBackends) where

-- When adding a new backend, import it here and add it to the list.
import qualified Backend.WORM
import qualified Backend.SHA
import qualified Backend.URL
import Types

allBackends :: [Backend Annex]
allBackends = concat 
	[ Backend.WORM.backends
	, Backend.SHA.backends
	, Backend.URL.backends
	]