platypush/platypush/plugins/music/__init__.py

47 lines
824 B
Python
Raw Normal View History

from platypush.plugins import Plugin, action
class MusicPlugin(Plugin):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
@action
def play(self):
raise NotImplementedError()
@action
def pause(self):
raise NotImplementedError()
@action
def stop(self):
raise NotImplementedError()
@action
2017-11-03 15:06:29 +01:00
def next(self):
raise NotImplementedError()
@action
2017-11-03 15:06:29 +01:00
def previous(self):
raise NotImplementedError()
@action
2017-11-03 15:06:29 +01:00
def setvol(self, vol):
raise NotImplementedError()
@action
2017-11-03 15:06:29 +01:00
def add(self, content):
raise NotImplementedError()
@action
2017-11-03 15:06:29 +01:00
def clear(self):
raise NotImplementedError()
@action
def status(self):
raise NotImplementedError()
# vim:sw=4:ts=4:et: