baseimage-tutorial-framework/supervisor/tfw_server.py

9 lines
152 B
Python

from tornado.ioloop import IOLoop
from tfw.server import TFWServer
if __name__ == '__main__':
TFWServer().listen()
IOLoop.instance().start()