summaryrefslogtreecommitdiff
path: root/Annex.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-01-26 00:37:50 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-01-26 00:37:50 -0400
commit616d1d4a208693c46f41781d9099c1f04ae067e6 (patch)
tree66e5fdfd24eb0f407ef491262e7798189e4821c2 /Annex.hs
parentaa2ca533bcef1848a9dc94bfea8d33a99e8f2df0 (diff)
rename TypeInternals to BackendTypes
Now that it only contains types used by the backends
Diffstat (limited to 'Annex.hs')
-rw-r--r--Annex.hs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Annex.hs b/Annex.hs
index d47d44967..4a1b89dcf 100644
--- a/Annex.hs
+++ b/Annex.hs
@@ -23,7 +23,7 @@ import Control.Monad.State
import qualified GitRepo as Git
import qualified GitQueue
-import qualified TypeInternals
+import qualified BackendTypes
-- git-annex's monad
type Annex = StateT AnnexState IO
@@ -31,8 +31,8 @@ type Annex = StateT AnnexState IO
-- internal state storage
data AnnexState = AnnexState
{ repo :: Git.Repo
- , backends :: [TypeInternals.Backend Annex]
- , supportedBackends :: [TypeInternals.Backend Annex]
+ , backends :: [BackendTypes.Backend Annex]
+ , supportedBackends :: [BackendTypes.Backend Annex]
, repoqueue :: GitQueue.Queue
, quiet :: Bool
, force :: Bool
@@ -44,7 +44,7 @@ data AnnexState = AnnexState
, remotesread :: Bool
} deriving (Show)
-newState :: Git.Repo -> [TypeInternals.Backend Annex] -> AnnexState
+newState :: Git.Repo -> [BackendTypes.Backend Annex] -> AnnexState
newState gitrepo allbackends = AnnexState
{ repo = gitrepo
, backends = []
@@ -61,7 +61,7 @@ newState gitrepo allbackends = AnnexState
}
{- Create and returns an Annex state object for the specified git repo. -}
-new :: Git.Repo -> [TypeInternals.Backend Annex] -> IO AnnexState
+new :: Git.Repo -> [BackendTypes.Backend Annex] -> IO AnnexState
new gitrepo allbackends = do
gitrepo' <- liftIO $ Git.configRead gitrepo
return $ newState gitrepo' allbackends