mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-08 20:17:17 +00:00
10 lines
255 B
Python
10 lines
255 B
Python
from tfw.event_handlers import EventHandlerBase
|
|
|
|
from .tfw_server_connector import TFWServerConnector
|
|
|
|
|
|
class EventHandler(EventHandlerBase):
|
|
# pylint: disable=abstract-method
|
|
def _build_server_connector(self):
|
|
return TFWServerConnector()
|