mitmproxy/examples/simple/custom_option.py
2017-03-14 08:32:19 +13:00

11 lines
257 B
Python

from mitmproxy import ctx
def start(options):
ctx.log.info("Registering option 'custom'")
options.add_option("custom", bool, False, "A custom option")
def configure(options, updated):
ctx.log.info("custom option value: %s" % options.custom)