aboutsummaryrefslogtreecommitdiff
path: root/wsgi.py
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2020-10-31 12:05:31 -0400
committerGalen Guyer <galen@galenguyer.com>2020-10-31 12:05:31 -0400
commitefab60744e7284e245bbd6266755ab3ca1a37200 (patch)
treeb79c22eebbdaf16c1d800e596bc7c49a772662d2 /wsgi.py
parent1009968ea0ca43ef1b1bc421f7694f1f70707948 (diff)
Rename demo to poller
Diffstat (limited to 'wsgi.py')
-rw-r--r--wsgi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wsgi.py b/wsgi.py
index a498cb4..31fc3f5 100644
--- a/wsgi.py
+++ b/wsgi.py
@@ -2,7 +2,7 @@
Primary entry point for the app
"""
-from demo import APP
+from poller import APP
if __name__ == "__main__":
APP.run(host=APP.config["IP"], port=int(APP.config["PORT"]))