git-annex/git-annex.hs
2010-10-10 15:04:18 -04:00

19 lines
389 B
Haskell

{- git-annex main program
- -}
import LocationLog
import GitRepo
import Backend
import Annex
-- 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
gitPrep repo
l <- readLog "demo.log"
writeLog "demo2.log" $ compactLog l