Files
blog/wsgi.py

7 lines
89 B
Python

from www import create_app
app = create_app()
if __name__ == "__main__":
app.run()