mirror of https://github.com/pallets/flask.git
7 lines
102 B
Python
7 lines
102 B
Python
|
from flask import Flask
|
||
|
app = Flask(__name__)
|
||
|
|
||
|
@app.route("/")
|
||
|
def hello():
|
||
|
return "Hello World!"
|