Skip to content

Commit a74d477

Browse files
committed
added app/ flask
1 parent 1def274 commit a74d477

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

run.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
from app import create_app
1+
from flask import Flask
22

3-
app = create_app()
3+
app = Flask(__name__)
4+
5+
@app.route("/")
6+
def index():
7+
return "Ciao mondo!"

0 commit comments

Comments
 (0)