"""WSGI entrypoint for deploying under Gunicorn or any WSGI server.

Usage example:
  gunicorn -w 4 -b 0.0.0.0:8000 wsgi:app

This module imports the Flask `app` defined in `web.py` and exposes
it as the WSGI callable named `app` (and `application` for compatibility).
"""
from web import app as application

# Provide the conventional `app` symbol many tools expect.
app = application
