project init

This commit is contained in:
NoeBerdoz
2025-04-11 22:42:54 +02:00
commit 187a4e1f5e
9 changed files with 340 additions and 0 deletions

12
app.py Normal file
View File

@ -0,0 +1,12 @@
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()