12 lines
141 B
Haskell
12 lines
141 B
Haskell
{- git-annex abstract data types -}
|
|
|
|
module Types (
|
|
Annex,
|
|
AnnexState,
|
|
Backend,
|
|
Key,
|
|
backendName,
|
|
keyFrag
|
|
) where
|
|
|
|
import BackendTypes
|