diff options
Diffstat (limited to 'Assistant/Types')
-rw-r--r-- | Assistant/Types/RemoteProblem.hs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Assistant/Types/RemoteProblem.hs b/Assistant/Types/RemoteProblem.hs new file mode 100644 index 000000000..539da3db9 --- /dev/null +++ b/Assistant/Types/RemoteProblem.hs @@ -0,0 +1,18 @@ +{- git-annex assistant remote problem detection + - + - Copyright 2013 Joey Hess <joey@kitenet.net> + - + - Licensed under the GNU GPL version 3 or higher. + -} + +module Assistant.Types.RemoteProblem where + +import Types +import Utility.TList + +import Control.Concurrent.STM + +type RemoteProblemChan = TList Remote + +newRemoteProblemChan :: IO RemoteProblemChan +newRemoteProblemChan = atomically newTList |