platypush/lib/plugins/__init__.py

7 lines
105 B
Python
Raw Normal View History

2017-10-31 09:20:35 +01:00
class Plugin(object):
def run(self, args):
raise NotImplementedError()
# vim:sw=4:ts=4:et: