Files
Lurnby-learn/wsgi.py
2021-02-09 15:17:19 +01:00

8 lines
134 B
Python

from app import create_app
from config import Config
app = create_app(config_class=Config)
if __name__ == "__main__":
app.run()