well-goknown/lnd/lnd.go

16 lines
321 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
2023-02-05 03:24:30 +00:00
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)
2023-02-05 03:24:30 +00:00
return "x", nil
2023-02-03 04:56:15 +00:00
}