mirror of
https://github.com/LBRYFoundation/lbry-sdk.git
synced 2025-08-23 17:27:25 +00:00
24 lines
No EOL
418 B
Python
24 lines
No EOL
418 B
Python
from zope.interface import Interface
|
|
|
|
|
|
class IControlHandlerFactory(Interface):
|
|
def get_prompt_description(self):
|
|
pass
|
|
|
|
def get_handler(self):
|
|
pass
|
|
|
|
|
|
class IControlHandler(Interface):
|
|
def handle_line(self, line):
|
|
pass
|
|
|
|
|
|
class ICommandHandlerFactory(Interface):
|
|
def get_handler(self):
|
|
pass
|
|
|
|
|
|
class ICommandHandler(Interface):
|
|
def handle_line(self, line):
|
|
pass |