mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 14:42:40 +01:00
14 lines
150 B
Python
Executable file
14 lines
150 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
from pyln.client import Plugin
|
|
import os
|
|
|
|
plugin = Plugin()
|
|
|
|
|
|
@plugin.method("die")
|
|
def die():
|
|
os._exit(1)
|
|
|
|
|
|
plugin.run()
|