mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
12 lines
147 B
Python
12 lines
147 B
Python
# Run with:
|
|
#
|
|
# $ gunicorn flaskapp:app
|
|
#
|
|
|
|
from flask import Flask
|
|
app = Flask(__name__)
|
|
|
|
@app.route("/")
|
|
def hello():
|
|
return "Hello World!"
|