well-goknown/lnd/lnd.go

9 lines
149 B
Go
Raw Normal View History

2023-02-03 04:56:15 +00:00
package lnd
import "github.com/davecgh/go-spew/spew"
2023-02-03 04:56:15 +00:00
func Request(request []byte) (string, int, error) {
spew.Dump(request)
return "x", 1, nil
2023-02-03 04:56:15 +00:00
}