summaryrefslogtreecommitdiff
path: root/Assistant/Types
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-10-29 19:35:18 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-10-29 19:35:18 -0400
commitde83800ab39649992cd7f9ae61689820138613bd (patch)
treeb0010403a376694f42cc3e36d8ccc3b5365c9d65 /Assistant/Types
parent4c12d38e33923c929a1a264d5b511fb5b8afdf33 (diff)
split Commits and lifted
Diffstat (limited to 'Assistant/Types')
-rw-r--r--Assistant/Types/Commits.hs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Assistant/Types/Commits.hs b/Assistant/Types/Commits.hs
new file mode 100644
index 000000000..bb17c578b
--- /dev/null
+++ b/Assistant/Types/Commits.hs
@@ -0,0 +1,17 @@
+{- git-annex assistant commit tracking
+ -
+ - Copyright 2012 Joey Hess <joey@kitenet.net>
+ -
+ - Licensed under the GNU GPL version 3 or higher.
+ -}
+
+module Assistant.Types.Commits where
+
+import Utility.TSet
+
+type CommitChan = TSet Commit
+
+data Commit = Commit
+
+newCommitChan :: IO CommitChan
+newCommitChan = newTSet