diff --git a/app.py b/app.py new file mode 100644 index 0000000..e85bd6c --- /dev/null +++ b/app.py @@ -0,0 +1,10 @@ +from flask import Flask, jsonify, request + +# Intitialise the app +app = Flask(__name__) + +# Define what the app does +@app.get("/greet") +def index(): + response = {"data":"value is hellow world"} + return jsonify(response) \ No newline at end of file