mirror of
https://github.com/aljazceru/lspd.git
synced 2025-12-21 07:44:22 +01:00
13 lines
157 B
Go
13 lines
157 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/breez/lspd/cln_plugin"
|
|
)
|
|
|
|
func main() {
|
|
plugin := cln_plugin.NewClnPlugin(os.Stdin, os.Stdout)
|
|
plugin.Start()
|
|
}
|