mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-21 16:14:23 +01:00
14 lines
249 B
Python
Executable File
14 lines
249 B
Python
Executable File
#!/usr/bin/env python3
|
|
from pyln.client import Plugin
|
|
|
|
plugin = Plugin()
|
|
|
|
|
|
@plugin.init()
|
|
def init(options, configuration, plugin):
|
|
plugin.log("printing debug log", level='debug')
|
|
plugin.log("printing info log", level='info')
|
|
|
|
|
|
plugin.run()
|