forked from LBRYCommunity/lbry-sdk
10 lines
188 B
Python
10 lines
188 B
Python
|
from yapsy.IPlugin import IPlugin
|
||
|
|
||
|
|
||
|
class LBRYPlugin(IPlugin):
|
||
|
|
||
|
def __init__(self):
|
||
|
IPlugin.__init__(self)
|
||
|
|
||
|
def setup(self, lbry_console):
|
||
|
raise NotImplementedError
|