wsgi.py 111 B

1234
  1. from main import app as application
  2. if __name__ == '__main__':
  3. application.run(host='0.0.0.0', port=4000)