platypush/platypush/plugins/switch/__init__.py
2017-12-11 20:30:57 +01:00

19 lines
320 B
Python

from .. import Plugin
class SwitchPlugin(Plugin):
def on(self, args):
raise NotImplementedError()
def off(self, args):
raise NotImplementedError()
def toggle(self, args):
raise NotImplementedError()
def status(self):
raise NotImplementedError()
# vim:sw=4:ts=4:et: