summaryrefslogtreecommitdiffstats
path: root/forum/badges/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'forum/badges/base.py')
-rwxr-xr-xforum/badges/base.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/forum/badges/base.py b/forum/badges/base.py
new file mode 100755
index 00000000..03ef3565
--- /dev/null
+++ b/forum/badges/base.py
@@ -0,0 +1,11 @@
+
+
+class BadgeImplementation(object):
+ name = ""
+ description = ""
+
+ def install(self):
+ pass
+
+ def process_job(self):
+ raise NotImplementedError \ No newline at end of file