# WSGI entrypoint for production WSGI servers (Gunicorn/uWSGI)
# Exposes the Flask application as the WSGI `application` callable.

from app import app as application

if __name__ == '__main__':
    # Useful for local debugging only
    application.run()
