mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-08 20:07:16 +00:00
11 lines
324 B
Python
11 lines
324 B
Python
from tfw.event_handlers import EventHandlerBase
|
|
from tfw.networking import Scope
|
|
|
|
from .tfw_server_connector import TFWServerConnector
|
|
|
|
|
|
class EventHandler(EventHandlerBase):
|
|
# pylint: disable=abstract-method
|
|
def __init__(self, key, scope=Scope.ZMQ):
|
|
super().__init__(key, TFWServerConnector(), scope=scope)
|