aboutsummaryrefslogtreecommitdiff
path: root/wsgi.py
blob: cd51ea36064ada54b3b3c19e21fe6e31f688f0de (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']))