well-goknown/lnd/lnd.go
2023-02-04 22:24:30 -05:00

16 lines
321 B
Go

package lnd
import (
"github.com/davecgh/go-spew/spew"
)
func Request(rKey string, request []byte) (string, error) {
//redis, err := redis.New("localhost:6379", "", redis.LndDb)
//if err != nil {
// return "", 0, errors.New("Failed to connect to redis")
//}
spew.Dump(rKey)
spew.Dump(request)
return "x", nil
}