git-annex/Types.hs
Joey Hess f0754a61f5
plumb VerifyConfig into retrieveKeyFile
This fixes the recent reversion that annex.verify is not honored,
because retrieveChunks was passed RemoteVerify baser, but baser
did not have export/import set up.

Sponsored-by: Dartmouth College's DANDI project
2021-08-17 12:43:13 -04:00

31 lines
542 B
Haskell

{- git-annex abstract data types
-
- Copyright 2010 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU AGPL version 3 or higher.
-}
module Types (
Annex,
Backend,
Key,
AssociatedFile(..),
UUID(..),
GitConfig(..),
RemoteGitConfig(..),
Remote,
RemoteType,
VerifyConfig,
) where
import Annex
import Types.Backend
import Types.GitConfig
import Types.Key
import Types.UUID
import Types.Remote
type Backend = BackendA Annex
type Remote = RemoteA Annex
type RemoteType = RemoteTypeA Annex
type VerifyConfig = VerifyConfigA Annex