Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/buildbot/buildbot/changes/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot/buildbot/changes/base.py')
-rw-r--r--buildbot/buildbot/changes/base.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/buildbot/buildbot/changes/base.py b/buildbot/buildbot/changes/base.py
new file mode 100644
index 0000000..72c45bf
--- /dev/null
+++ b/buildbot/buildbot/changes/base.py
@@ -0,0 +1,10 @@
+
+from zope.interface import implements
+from twisted.application import service
+
+from buildbot.interfaces import IChangeSource
+from buildbot import util
+
+class ChangeSource(service.Service, util.ComparableMixin):
+ implements(IChangeSource)
+