about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--main.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/main.py b/main.py
new file mode 100644
index 0000000..33d3882
--- /dev/null
+++ b/main.py
@@ -0,0 +1,14 @@
+"""Main entry point for project"""
+
+from flask import Flask
+app = Flask(__name__)
+
+
+@app.route("/")
+def hello():
+    """Test hello world"""
+    return "Hello World!"
+
+
+if __name__ == '__main__':
+    app.run()