Files
learn/backend/wsgi.py
2020-02-03 14:23:19 -05:00

7 lines
105 B
Python

from app import create_app
# Create the app
app = create_app()
if __name__ == "__main__":
app.run()