mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-01 08:21:22 +00:00
9 lines
222 B
Python
9 lines
222 B
Python
from tfw.internals.event_handling import EventHandlerFactoryBase
|
|
|
|
from .tfw_connector import TFWConnector
|
|
|
|
|
|
class EventHandlerFactory(EventHandlerFactoryBase):
|
|
def _build_connector(self):
|
|
return TFWConnector()
|