forked from platypush/platypush
19 lines
320 B
Python
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:
|
||
|
|