sampleplayer/wsgi.py

10 lines
195 B
Python
Raw Normal View History

2024-05-19 12:51:51 +00:00
#!/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