summaryrefslogtreecommitdiffstats
path: root/test.py
diff options
context:
space:
mode:
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()