mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-05 16:31:21 +00:00
10 lines
201 B
Python
10 lines
201 B
Python
|
from tornado.ioloop import IOLoop
|
||
|
|
||
|
from tfw.networking import TFWServer
|
||
|
from tfw.config import TFWENV
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
TFWServer().listen(TFWENV.WEB_PORT)
|
||
|
IOLoop.instance().start()
|