2015-08-20 11:27:15 -04:00
|
|
|
from yapsy.IPlugin import IPlugin
|
|
|
|
|
|
|
|
|
2016-09-27 11:18:35 -07:00
|
|
|
class Plugin(IPlugin):
|
2015-08-20 11:27:15 -04:00
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
IPlugin.__init__(self)
|
|
|
|
|
|
|
|
def setup(self, lbry_console):
|
2015-09-04 16:22:02 -04:00
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def stop(self):
|
2015-08-20 11:27:15 -04:00
|
|
|
raise NotImplementedError
|