mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-12 20:27:17 +00:00
11 lines
207 B
Python
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()
|