platypush/platypush/plugins/switch/__init__.py

19 lines
320 B
Python
Raw Normal View History

2017-11-04 00:13:22 +01:00
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: