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

from packet import app

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