summaryrefslogtreecommitdiff
path: root/wsgi.py
blob: 42482be595fbe33995bd09f9d5053de627503cc9 (plain) (blame)
1
2
3
4
5
6
7
8
"""
Primary entry point for the app
"""

from dysphoria import app

if __name__ == "__main__":
    app.run(host=app.config["IP"], port=int(app.config["PORT"]))