mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-23 23:06:44 +01:00
13 lines
248 B
Python
13 lines
248 B
Python
|
#!/usr/bin/env python3
|
||
|
from pyln.client import Plugin
|
||
|
|
||
|
plugin = Plugin()
|
||
|
|
||
|
plugin.add_option(
|
||
|
name="test-dynamic-config",
|
||
|
description="A config option which can be changed at run-time",
|
||
|
default="initial",
|
||
|
dynamic=True)
|
||
|
|
||
|
plugin.run()
|