mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-20 02:27:21 +01:00
9 lines
152 B
Go
9 lines
152 B
Go
package postgres
|
|
|
|
import "github.com/btcsuite/btcwallet/walletdb"
|
|
|
|
type Fixture interface {
|
|
DB() walletdb.DB
|
|
Dump() (map[string]interface{}, error)
|
|
}
|