Add a basic built-in web app.

This commit is contained in:
Aldo Cortesi
2013-03-25 09:20:26 +13:00
parent 98e4421a90
commit e3fd0e838d
6 changed files with 68 additions and 10 deletions

8
libmproxy/app.py Normal file
View File

@@ -0,0 +1,8 @@
import flask
mapp = flask.Flask(__name__)
@mapp.route("/")
def hello():
return "mitmproxy"