first commit

This commit is contained in:
vincent 2019-04-23 19:19:39 +02:00
parent 886cb139f5
commit 1492f2a23d

13
main.py Normal file
View File

@ -0,0 +1,13 @@
from flask import Flask
app=Flask(__name__)
@app.route('/')
def index():
return "Hello !"
if __name__ =='__main__':
app.run(debug=True)