def chat():
global thread
if thread is None:
print 'started'
thread = Thread(target=background_thread)
thread.daemon = True
thread.start()
return render_template('chat.html')
# @app.route('/poll', methods=['POST'])
评论列表
文章目录