mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-01 03:24:41 +01:00
15 lines
219 B
Python
15 lines
219 B
Python
|
#!/usr/bin/env python3
|
||
|
from lightning import Plugin
|
||
|
import time
|
||
|
|
||
|
plugin = Plugin()
|
||
|
|
||
|
|
||
|
@plugin.init()
|
||
|
def init(options, configuration, plugin):
|
||
|
plugin.log("slow_init.py initializing")
|
||
|
time.sleep(1)
|
||
|
|
||
|
|
||
|
plugin.run()
|