diff options
author | Joey Hess <joey@kitenet.net> | 2011-04-28 17:21:45 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-04-28 17:21:45 -0400 |
commit | 3ab3f41aea78f6816493d094d2daca7cc0067a91 (patch) | |
tree | b70c38456332a5d4f96160e1a377cea127992dbf /Remote.hs | |
parent | b5072b7b4cab21118f60c55a58497f363f749244 (diff) |
hook special remote implemented, and tested
Diffstat (limited to 'Remote.hs')
-rw-r--r-- | Remote.hs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -49,6 +49,7 @@ import qualified Remote.S3 import qualified Remote.Bup import qualified Remote.Directory import qualified Remote.Rsync +import qualified Remote.Hook remoteTypes :: [RemoteType Annex] remoteTypes = @@ -57,6 +58,7 @@ remoteTypes = , Remote.Bup.remote , Remote.Directory.remote , Remote.Rsync.remote + , Remote.Hook.remote ] {- Builds a list of all available Remotes. |