wsgi.py 137 B

1234567
  1. """WSGI entry point built from the repository source tree."""
  2. from app import create_app
  3. application = create_app()
  4. app = application