summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Server/Plugin.py')
-rw-r--r--src/lib/Server/Plugin.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/Server/Plugin.py b/src/lib/Server/Plugin.py
index 8d702d435..21699657f 100644
--- a/src/lib/Server/Plugin.py
+++ b/src/lib/Server/Plugin.py
@@ -137,6 +137,13 @@ class GoalValidator(object):
def validate_goals(self, metadata, goals):
raise ValidationError, "not implemented"
+class Version(object):
+ '''Interact with various version control systems'''
+ def get_revision(self):
+ return []
+ def commit_data(self):
+ pass
+
# the rest of the file contains classes for coherent file caching
class FileBacked(object):