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