lnd/kvdb/postgres/fixture_interface.go

9 lines
152 B
Go
Raw Normal View History

2021-07-16 18:07:30 +02:00
package postgres
import "github.com/btcsuite/btcwallet/walletdb"
type Fixture interface {
DB() walletdb.DB
Dump() (map[string]interface{}, error)
}