mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-03 20:44:54 +01:00
15 lines
191 B
Python
15 lines
191 B
Python
|
#!/usr/bin/env python3
|
||
|
from lightning import Plugin
|
||
|
|
||
|
|
||
|
plugin = Plugin()
|
||
|
|
||
|
|
||
|
@plugin.method("utf8")
|
||
|
def echo(plugin, utf8):
|
||
|
assert '\\u' not in utf8
|
||
|
return {'utf8': utf8}
|
||
|
|
||
|
|
||
|
plugin.run()
|