Spaces:
Sleeping
Sleeping
File size: 286 Bytes
d4a3b8b | 1 2 3 4 5 6 7 8 9 10 | """WSGI entrypoint for production servers.
Expose the Flask application as ``application`` so Gunicorn or other WSGI-compatible
servers can import it via ``wsgi:application``.
"""
from app import app as application
if __name__ == "__main__": # pragma: no cover
application.run()
|