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