1
0
Fork 0
mirror of https://github.com/lightningnetwork/lnd.git synced 2025-03-13 02:58:33 +01:00
lnd/kvdb/postgres/fixture_interface.go
2021-10-29 10:54:44 +02:00

8 lines
152 B
Go

package postgres
import "github.com/btcsuite/btcwallet/walletdb"
type Fixture interface {
DB() walletdb.DB
Dump() (map[string]interface{}, error)
}