summaryrefslogtreecommitdiffstats
path: root/forum/badges/base.py
blob: 03ef35652706e8d3c233caaaaf49f02df6af4a2d (plain)
1
2
3
4
5
6
7
8
9
10
11
class BadgeImplementation(object):
    name = ""
    description = ""

    def install(self):
        pass

    def process_job(self):
        raise NotImplementedError