diff options
author | Joey Hess <joey@kitenet.net> | 2011-01-26 00:37:50 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-01-26 00:37:50 -0400 |
commit | 616d1d4a208693c46f41781d9099c1f04ae067e6 (patch) | |
tree | 66e5fdfd24eb0f407ef491262e7798189e4821c2 /Backend | |
parent | aa2ca533bcef1848a9dc94bfea8d33a99e8f2df0 (diff) |
rename TypeInternals to BackendTypes
Now that it only contains types used by the backends
Diffstat (limited to 'Backend')
-rw-r--r-- | Backend/File.hs | 2 | ||||
-rw-r--r-- | Backend/SHA1.hs | 2 | ||||
-rw-r--r-- | Backend/URL.hs | 2 | ||||
-rw-r--r-- | Backend/WORM.hs | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/Backend/File.hs b/Backend/File.hs index d0c1e0e22..ac6e4a910 100644 --- a/Backend/File.hs +++ b/Backend/File.hs @@ -17,7 +17,7 @@ module Backend.File (backend, checkKey) where import Control.Monad.State import System.Directory -import TypeInternals +import BackendTypes import LocationLog import Locations import qualified Remotes diff --git a/Backend/SHA1.hs b/Backend/SHA1.hs index be41264b0..f8dbea4b0 100644 --- a/Backend/SHA1.hs +++ b/Backend/SHA1.hs @@ -14,7 +14,7 @@ import System.IO import System.Directory import qualified Backend.File -import TypeInternals +import BackendTypes import Messages import qualified Annex import Locations diff --git a/Backend/URL.hs b/Backend/URL.hs index d67b7db84..45a204b07 100644 --- a/Backend/URL.hs +++ b/Backend/URL.hs @@ -11,7 +11,7 @@ import Control.Monad.State (liftIO) import Data.String.Utils import Types -import TypeInternals +import BackendTypes import Utility import Messages diff --git a/Backend/WORM.hs b/Backend/WORM.hs index 011018393..56f243396 100644 --- a/Backend/WORM.hs +++ b/Backend/WORM.hs @@ -15,7 +15,7 @@ import System.Directory import Data.String.Utils import qualified Backend.File -import TypeInternals +import BackendTypes import Locations import qualified Annex import Content |