summaryrefslogtreecommitdiffstats
path: root/test.py
diff options
context:
space:
mode:
authorTeddy Wing2015-01-25 22:54:06 -0500
committerTeddy Wing2015-01-25 22:54:06 -0500
commit89ce7c1d1fdba2809508fdf2924d4418809c5af0 (patch)
treec2b288e690b412d043c735e344eb67ea1449b14a /test.py
parent759007bc8129b34e0ef408f87da68bb9eb714e30 (diff)
downloadedu-net-89ce7c1d1fdba2809508fdf2924d4418809c5af0.tar.bz2
Rename test.py to app.py
Diffstat (limited to 'test.py')
-rw-r--r--test.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/test.py b/test.py
deleted file mode 100644
index aa84685..0000000
--- a/test.py
+++ /dev/null
@@ -1,10 +0,0 @@
-from flask import Flask
-app = Flask(__name__)
-
-#for the slash rout run this function
-@app.route("/")
-def hello():
- return "Hello World!"
-
-if __name__ == "__main__":
- app.run()