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