mitmproxy/libmproxy/app.py

8 lines
97 B
Python

import flask
mapp = flask.Flask(__name__)
@mapp.route("/")
def hello():
return "mitmproxy"