diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-06-02 16:34:52 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-06-02 16:34:52 -0400 |
commit | 0ff2732d9583fd70d75cd8e365587803a7ac75ed (patch) | |
tree | 8dde2949bfd29ea6adcf2a40f992fe6970872ebd /RemoteDaemon/Types.hs | |
parent | b986b85cec119403c1a62fc268e26ff948de9fca (diff) |
make LocalRepo a newtype
Diffstat (limited to 'RemoteDaemon/Types.hs')
-rw-r--r-- | RemoteDaemon/Types.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RemoteDaemon/Types.hs b/RemoteDaemon/Types.hs index 5fd074a1e..f85219ea5 100644 --- a/RemoteDaemon/Types.hs +++ b/RemoteDaemon/Types.hs @@ -29,7 +29,7 @@ newtype RemoteURI = RemoteURI URI type Transport = RemoteRepo -> RemoteURI -> TransportHandle -> TChan Consumed -> TChan Emitted -> IO () data RemoteRepo = RemoteRepo Git.Repo RemoteGitConfig -type LocalRepo = Git.Repo +newtype LocalRepo = LocalRepo Git.Repo -- All Transports share a single AnnexState MVar -- |