mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-03 03:07:18 +00:00
7 lines
97 B
Python
7 lines
97 B
Python
import flask
|
|
|
|
mapp = flask.Flask(__name__)
|
|
|
|
@mapp.route("/")
|
|
def hello():
|
|
return "mitmproxy"
|