mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-02 02:37:15 +00:00
5 lines
131 B
Python
5 lines
131 B
Python
def request(context, flow):
|
|
q = flow.request.query
|
|
if q:
|
|
q["mitmproxy"] = ["rocks"]
|
|
flow.request.query = q
|