Updated the zukebox-playlist-scpd.xml to acess the method GetPlaylist
[zukebox] / zukebox_server / src / server / ziface.py
1
2 class ZIface(object):
3     """ Interface for ZukeBox Server
4     """
5
6     def start(self):
7         raise NotImplementationError("Should be implemented by subclasses")
8
9     def stop(self):
10         raise NotImplementationError("Should be implemented by subclasses")