mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-24 07:07:46 +01:00
16 lines
296 B
Python
16 lines
296 B
Python
|
#!/some/bad/path/to/python3
|
||
|
from pyln.client import Plugin
|
||
|
import os
|
||
|
import time
|
||
|
|
||
|
plugin = Plugin()
|
||
|
|
||
|
|
||
|
@plugin.init()
|
||
|
def init(options, configuration, plugin):
|
||
|
plugin.log("slow_init.py initializing {}".format(configuration))
|
||
|
time.sleep(int(os.getenv('SLOWINIT_TIME', "0")))
|
||
|
|
||
|
|
||
|
plugin.run()
|