mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-09-05 21:21:53 +00:00
8 lines
108 B
Python
8 lines
108 B
Python
from flask import Flask
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route("/")
|
|
def hello():
|
|
return "Hello World! app4"
|