2010-10-14 07:18:11 +00:00
|
|
|
{- git-annex abstract data types -}
|
|
|
|
|
|
|
|
module Types (
|
|
|
|
Annex,
|
|
|
|
AnnexState,
|
2010-10-15 00:05:04 +00:00
|
|
|
Backend,
|
2010-10-14 07:18:11 +00:00
|
|
|
Key,
|
2010-10-15 00:05:04 +00:00
|
|
|
backendName,
|
2010-10-15 01:10:59 +00:00
|
|
|
keyFrag,
|
|
|
|
Flag(..),
|
2010-10-14 07:18:11 +00:00
|
|
|
) where
|
|
|
|
|
2010-10-18 06:06:27 +00:00
|
|
|
import TypeInternals
|