diff options
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 |