lbry-sdk/lbrynet/lbrynet_console/Plugin.py

13 lines
243 B
Python
Raw Normal View History

2015-08-20 17:27:15 +02:00
from yapsy.IPlugin import IPlugin
class LBRYPlugin(IPlugin):
def __init__(self):
IPlugin.__init__(self)
def setup(self, lbry_console):
raise NotImplementedError
def stop(self):
2015-08-20 17:27:15 +02:00
raise NotImplementedError