sampleplayer/wsgi.py
Sophie Schiller ff31008e24 wsgi?
2024-05-19 14:51:51 +02:00

9 lines
195 B
Python

#!/usr/bin/python3
import sys
import logging
logging.basicConfig(stream=sys.stderr)
sys.path.insert(0,"/root/customer-account-automation/")
from app import app as application
app = application