baseimage-tutorial-framework/lib/tfw/main/event_handler_factory.py

9 lines
219 B
Python

from tfw.event_handlers import EventHandlerFactoryBase
from .tfw_connector import TFWConnector
class EventHandlerFactory(EventHandlerFactoryBase):
def _build_server_connector(self):
return TFWConnector()