lbry-sdk/lbrynet/lbrynet_console/Plugin.py
2016-09-25 18:11:23 -07:00

13 lines
243 B
Python

from yapsy.IPlugin import IPlugin
class LBRYPlugin(IPlugin):
def __init__(self):
IPlugin.__init__(self)
def setup(self, lbry_console):
raise NotImplementedError
def stop(self):
raise NotImplementedError