mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-02 02:37:15 +00:00
7 lines
136 B
Python
7 lines
136 B
Python
class AddHeader:
|
|
def response(self, flow):
|
|
flow.response.headers["newheader"] = "foo"
|
|
|
|
|
|
def start():
|
|
return AddHeader()
|