baseimage-tutorial-framework/supervisor/tfw_server.py
2019-06-27 17:42:41 +02:00

11 lines
207 B
Python

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