Files
SneakyScope/app/wsgi.py
2025-08-20 21:22:28 +00:00

11 lines
135 B
Python

"""
app/wsgi.py
Gunicorn entrypoint for SneakyScope.
"""
from . import create_app
# Gunicorn will look for "app"
app = create_app()