First Commit

This commit is contained in:
Yûki VACHOT 2021-10-18 07:33:52 +02:00
commit 034033061f

9
app.py Normal file
View file

@ -0,0 +1,9 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world(): # put application's code here
return 'Hello World!'
if __name__ == '__main__':
app.run()