mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 06:41:44 +01:00
19 lines
320 B
Python
Executable file
19 lines
320 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
from pyln.client import Plugin
|
|
import time
|
|
|
|
plugin = Plugin()
|
|
|
|
|
|
@plugin.method("countdown")
|
|
def countdown(count, plugin, request):
|
|
count = int(count)
|
|
for i in range(count):
|
|
time.sleep(0.1)
|
|
request.notify("{}/{}".format(i, count), "INFO")
|
|
|
|
return "Done"
|
|
|
|
|
|
plugin.run()
|