aboutsummaryrefslogtreecommitdiff
path: root/wqflask/gunicorn/genenetwork2.py
diff options
context:
space:
mode:
Diffstat (limited to 'wqflask/gunicorn/genenetwork2.py')
-rw-r--r--wqflask/gunicorn/genenetwork2.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/wqflask/gunicorn/genenetwork2.py b/wqflask/gunicorn/genenetwork2.py
deleted file mode 100644
index afbdc934..00000000
--- a/wqflask/gunicorn/genenetwork2.py
+++ /dev/null
@@ -1,10 +0,0 @@
-from flask import Flask
-application = Flask(__name__)
-
-@application.route("/")
-def hello():
- return "<h1 style='color:blue'>Hello There!</h1>"
-
-if __name__ == "__main__":
- application.run(host='0.0.0.0')
-