well-goknown/lnd/lnd.go
2023-02-04 18:52:50 -05:00

9 lines
149 B
Go

package lnd
import "github.com/davecgh/go-spew/spew"
func Request(request []byte) (string, int, error) {
spew.Dump(request)
return "x", 1, nil
}