git-annex/Common/Annex.hs
Joey Hess b11a63a860 clean up read/show abuse
Avoid ever using read to parse a non-haskell formatted input string.

show :: Key is arguably still show abuse, but displaying Keys as filenames
is just too useful to give up.
2011-11-08 00:17:54 -04:00

15 lines
254 B
Haskell

module Common.Annex (
module Common,
module Types,
module Types.UUID,
module Annex,
module Locations,
module Messages,
) where
import Common
import Types
import Types.UUID (toUUID, fromUUID)
import Annex (gitRepo)
import Locations
import Messages