lnd.xprv/channeldb/kvdb/etcd.go
Andras Banki-Horvath 6a24a03cec channeldb+kvdb: walletdb/kvdb interface etcd implementation
This commit adds a full interface implementation of the walletdb/kvdb
interface with detailed tests.
2020-05-22 11:26:25 +02:00

11 lines
316 B
Go

package kvdb
import (
_ "github.com/lightningnetwork/lnd/channeldb/kvdb/etcd" // Import to register backend.
)
// EtcdBackendName is the name of the backend that should be passed into
// kvdb.Create to initialize a new instance of kvdb.Backend backed by a live
// instance of etcd.
const EtcdBackendName = "etcd"