another try

This commit is contained in:
Andreas Balogh
2021-02-16 15:52:28 +01:00
parent c1d80cabbd
commit 954b9380f4
6 changed files with 6 additions and 20 deletions

8
flaskr/hello.py Normal file
View File

@@ -0,0 +1,8 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
return 'Hello World!\n'