mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-09 01:37:17 +00:00
9 lines
219 B
Python
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()
|