madblog/madblog/uwsgi.py

12 lines
145 B
Python
Raw Normal View History

2022-01-11 20:16:27 +01:00
from .config import init_config
init_config()
from .app import app
# For gunicorn/uWSGI compatibility
application = app
# vim:sw=4:ts=4:et: