anonstream/app.py

6 行
122 B
Python

from website import create_app
if __name__ == '__main__':
app = create_app()
app.run(debug=False, threaded=True)