mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-12-28 17:44:47 +01:00
13 lines
193 B
Python
13 lines
193 B
Python
|
#!/usr/bin/env python3
|
||
|
from pyln.client import Plugin
|
||
|
|
||
|
plugin = Plugin()
|
||
|
|
||
|
|
||
|
@plugin.init()
|
||
|
def init(configuration, options, plugin):
|
||
|
return {'disable': 'init saying disable'}
|
||
|
|
||
|
|
||
|
plugin.run()
|