mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2025-04-04 04:32:40 +00:00
15 lines
511 B
Python
15 lines
511 B
Python
from tfw.components.source_code_event_handler import SourceCodeEventHandler
|
|
from tfw.components.terminado_event_handler import TerminadoEventHandler
|
|
from tornado.ioloop import IOLoop
|
|
|
|
from tfw.config import tfwenv
|
|
|
|
|
|
if __name__ == '__main__':
|
|
eventhandlers = {SourceCodeEventHandler('anchor_webide', tfwenv.WEBIDE_WD, 'login'),
|
|
TerminadoEventHandler('anchor_terminado', 'terminado')}
|
|
try:
|
|
IOLoop.instance().start()
|
|
finally:
|
|
for eh in eventhandlers: eh.cleanup()
|