1
0
mirror of https://github.com/avatao-content/test-tutorial-framework synced 2025-07-13 23:36:23 +00:00

Separate event handlers from independent components

This commit is contained in:
R. Richard
2019-06-20 16:06:23 +02:00
parent 096bba8367
commit dc42e0f4d0
3 changed files with 11 additions and 10 deletions

View File

@ -7,11 +7,11 @@ from tornado.ioloop import IOLoop
from tfw.fsm import YamlFSM
from tfw.event_handlers import EventHandlerBase, FSMAwareEventHandler, TFWServerUplinkConnector
from tfw.components import IdeEventHandler, TerminalEventHandler
from tfw.components import ProcessManagingEventHandler, BashMonitor
from tfw.components import TerminalCommands, LogMonitoringEventHandler
from tfw.components import FSMManagingEventHandler, DirectorySnapshottingEventHandler
from tfw.components import FrontendEventHandler, MessageSender
from tfw.builtins import FrontendEventHandler
from tfw.builtins import IdeEventHandler, TerminalEventHandler
from tfw.builtins import LogMonitoringEventHandler, ProcessManagingEventHandler
from tfw.builtins import DirectorySnapshottingEventHandler, FSMManagingEventHandler
from tfw.components import BashMonitor, MessageSender, TerminalCommands
from tfw.config import TFWENV
from tao.config import TAOENV
from tfw.config.log import TFWLog