Files
CGW-Quote-Builder/app/wsgi.py
T
2026-04-11 00:04:09 -05:00

9 lines
158 B
Python

"""
WSGI entry point for production deployment
Use with Gunicorn: gunicorn wsgi:app
"""
from app import app
if __name__ == "__main__":
app.run()