diff options
author | JoeyHess <> | 2012-01-02 17:41:13 (GMT) |
---|---|---|
committer | hdiff <hdiff@luite.com> | 2012-01-02 17:41:13 (GMT) |
commit | bb3367587d969082540de67977c3cf0a02c0f240 (patch) | |
tree | ab21ef9cb02f610d05dff405a637a63e205f6973 /Types.hs | |
parent | 2e028c832bf32a01263cdbd0698212087c2b76fe (diff) |
version 3.201112313.20111231
Diffstat (limited to 'Types.hs')
-rw-r--r-- | Types.hs | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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 |