mirror of
https://github.com/zhigang1992/mitmproxy.git
synced 2026-04-29 12:45:00 +08:00
Add a basic built-in web app.
This commit is contained in:
8
libmproxy/app.py
Normal file
8
libmproxy/app.py
Normal file
@@ -0,0 +1,8 @@
|
||||
import flask
|
||||
|
||||
mapp = flask.Flask(__name__)
|
||||
|
||||
@mapp.route("/")
|
||||
def hello():
|
||||
return "mitmproxy"
|
||||
|
||||
Reference in New Issue
Block a user