diff options
Diffstat (limited to 'Common')
-rw-r--r-- | Common/Annex.hs | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/Common/Annex.hs b/Common/Annex.hs index 6b5bc31de..e90825f0e 100644 --- a/Common/Annex.hs +++ b/Common/Annex.hs @@ -1,15 +1,8 @@ -module Common.Annex ( - module Common, - module Types, - module Types.UUID, - module Annex, - module Locations, - module Messages, -) where +module Common.Annex (module X) where -import Common -import Types -import Types.UUID (toUUID, fromUUID) -import Annex (gitRepo, inRepo, fromRepo) -import Locations -import Messages +import Common as X +import Types as X +import Types.UUID as X (toUUID, fromUUID) +import Annex as X (gitRepo, inRepo, fromRepo) +import Locations as X +import Messages as X |