from zope.interface import Interface
class IControlHandlerFactory(Interface):
def get_prompt_description(self):
pass
def get_handler(self):
class IControlHandler(Interface):
def handle_line(self, line):
class ICommandHandlerFactory(Interface):
class ICommandHandler(Interface):