mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
c8d2b2594b
This commit adds: - A WSGI App adapter for mitmproxy - An app registry in the proxy instance that lets us link WSGI apps with (hostname, port) combinations. - Fixes for a number of bugs discovered while creating this feature.
5 lines
117 B
Python
5 lines
117 B
Python
IVERSION = (0, 8)
|
|
VERSION = ".".join(str(i) for i in IVERSION)
|
|
NAME = "mitmproxy"
|
|
NAMEVERSION = NAME + " " + VERSION
|