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

from poller import APP

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