diff options
author | Joey Hess <joey@kitenet.net> | 2010-10-10 13:47:04 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-10-10 13:47:04 -0400 |
commit | 80ce5f90db1de10a5fa42583efcb7390cf185662 (patch) | |
tree | 7c94bbb23f893b1275aa756afd20ca6c5c8337c3 /git-annex.hs | |
parent | a55f49efb6c05c5ddb031f077690e90ed7358642 (diff) |
update
Diffstat (limited to 'git-annex.hs')
-rw-r--r-- | git-annex.hs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/git-annex.hs b/git-annex.hs index 8944b50f5..77faea2b7 100644 --- a/git-annex.hs +++ b/git-annex.hs @@ -3,6 +3,12 @@ import LocationLog import GitRepo +import Backend + +-- When adding a new backend, import it here and add it to the backends list. +import qualified BackendFile +import qualified BackendUrl +backends = [BackendFile.backend, BackendUrl.backend] main = do repo <- repoTop |