aboutsummaryrefslogtreecommitdiff
path: root/Types.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-12-31 04:11:39 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-12-31 04:11:58 -0400
commit4a02c2ea629e1825c824bcc09449806b12408699 (patch)
treefc00de3f710c2e2b2bbc6d4f99d576158648eb0b /Types.hs
parenta2ec2d3760f5ae17836ade3b0238dde7f9de5bd2 (diff)
type alias cleanup
Diffstat (limited to 'Types.hs')
-rw-r--r--Types.hs9
1 files changed, 8 insertions, 1 deletions
diff --git a/Types.hs b/Types.hs
index fd77bfe57..c8839b7eb 100644
--- a/Types.hs
+++ b/Types.hs
@@ -9,10 +9,17 @@ module Types (
Annex,
Backend,
Key,
- UUID(..)
+ UUID(..),
+ Remote,
+ RemoteType
) where
import Annex
import Types.Backend
import Types.Key
import Types.UUID
+import Types.Remote
+
+type Backend = BackendA Annex
+type Remote = RemoteA Annex
+type RemoteType = RemoteTypeA Annex