"""
WSGI entry point for production deployment
"""
from app import app

if __name__ == "__main__":
    app.run()

