diff --git a/main.py b/main.py new file mode 100644 index 0000000..9556754 --- /dev/null +++ b/main.py @@ -0,0 +1,13 @@ +from flask import Flask + +app=Flask(__name__) + + + +@app.route('/') +def index(): + return "Hello !" + + +if __name__ =='__main__': + app.run(debug=True)