mirror of
https://github.com/zhigang1992/mitmproxy.git
synced 2026-04-08 17:29:52 +08:00
8 lines
97 B
Python
8 lines
97 B
Python
import flask
|
|
|
|
mapp = flask.Flask(__name__)
|
|
|
|
@mapp.route("/")
|
|
def hello():
|
|
return "mitmproxy"
|