You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SoulSync/wsgi.py

9 lines
157 B

"""WSGI entrypoint for SoulSync production deployments."""
from web_server import app, start_runtime_services
start_runtime_services()
application = app