mirror of
https://github.com/lightninglabs/pool.git
synced 2026-08-13 12:33:04 +02:00
15 lines
249 B
Go
15 lines
249 B
Go
package test
|
|
|
|
import "github.com/lightninglabs/lndclient"
|
|
|
|
type SignerClient interface {
|
|
lndclient.SignerClient
|
|
}
|
|
|
|
type WalletKitClient interface {
|
|
lndclient.WalletKitClient
|
|
}
|
|
|
|
type ChainNotifierClient interface {
|
|
lndclient.ChainNotifierClient
|
|
}
|