git-annex/Types.hs

28 lines
435 B
Haskell
Raw Normal View History

2010-10-27 16:53:54 -04:00
{- git-annex abstract data types
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
2010-10-14 03:18:11 -04:00
module Types (
Annex,
2010-10-14 20:05:04 -04:00
Backend,
Key,
2011-12-31 04:11:39 -04:00
UUID(..),
Remote,
2012-01-06 10:14:37 -04:00
RemoteType,
Option
2010-10-14 03:18:11 -04:00
) where
import Annex
import Types.Backend
import Types.Key
import Types.UUID
2011-12-31 04:11:39 -04:00
import Types.Remote
2012-01-06 10:14:37 -04:00
import Types.Option
2011-12-31 04:11:39 -04:00
type Backend = BackendA Annex
type Remote = RemoteA Annex
type RemoteType = RemoteTypeA Annex