mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 14:42:40 +01:00
12 lines
248 B
Python
Executable file
12 lines
248 B
Python
Executable file
#!/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()
|