mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 22:46:40 +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)
|
||
|
}
|