lnd/kvdb/postgres/fixture_interface.go
2021-10-29 10:54:44 +02:00

9 lines
152 B
Go

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