19fde4960d
had to redo Annex monad's flag storage
14 lines
163 B
Haskell
14 lines
163 B
Haskell
{- git-annex abstract data types -}
|
|
|
|
module Types (
|
|
Annex,
|
|
AnnexState,
|
|
Backend,
|
|
Key,
|
|
genKey,
|
|
backendName,
|
|
FlagName,
|
|
Flag(..)
|
|
) where
|
|
|
|
import TypeInternals
|