mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-06-16 02:15:48 +00:00
8 lines
112 B
Python
8 lines
112 B
Python
from flask import Flask
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route("/")
|
|
def hello():
|
|
return "Hello World! app2 !!!"
|