changeset 1:4e24f3c6610c

agent
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 26 Sep 2013 05:11:57 -0700
parents bdc039cb1f2e
children 4cb3971d9d9d
files commitwatcher/agent.py
diffstat 1 files changed, 12 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/commitwatcher/agent.py	Thu Sep 26 05:11:57 2013 -0700
@@ -0,0 +1,12 @@
+"""
+agents to gather commits
+"""
+
+class Agent(object):
+    """abstract base class"""
+
+class LocalCheckoutAgent(object):
+    """agent based on local checkouts"""
+
+class FeedAgent(Agent):
+    """gathers changesets by reading RSS/Atom"""