11 lines
135 B
Python
11 lines
135 B
Python
"""
|
|
app/wsgi.py
|
|
|
|
Gunicorn entrypoint for SneakyScope.
|
|
"""
|
|
|
|
from . import create_app
|
|
|
|
# Gunicorn will look for "app"
|
|
app = create_app()
|