diff options
Diffstat (limited to 'RemoteDaemon')
-rw-r--r-- | RemoteDaemon/Types.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/RemoteDaemon/Types.hs b/RemoteDaemon/Types.hs index aff910120..0e44874d2 100644 --- a/RemoteDaemon/Types.hs +++ b/RemoteDaemon/Types.hs @@ -20,6 +20,7 @@ import Control.Concurrent -- The URI of a remote is used to uniquely identify it (names change..) newtype RemoteURI = RemoteURI URI + deriving (Show) -- A Transport for a particular git remote consumes some messages -- from a Chan, and emits others to another Chan. @@ -38,6 +39,7 @@ data Emitted | SYNCING RemoteURI | DONESYNCING RemoteURI Bool | WARNING RemoteURI String + deriving (Show) -- Messages that the deamon consumes. data Consumed @@ -47,6 +49,7 @@ data Consumed | CHANGED RefList | RELOAD | STOP + deriving (Show) type RefList = [Git.Ref] |