mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-14 16:07: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()
|