directlx-dev/wsgi.py

7 lines
101 B
Python

from app import create_app
app = create_app('production')
if __name__ == '__main__':
app.run()