blob: a8b4e77895ca90237560dbdb43b1336f7a4e9531 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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)
|