mirror of
https://github.com/lightninglabs/loop
synced 2024-11-13 13:10:30 +00:00
16 lines
344 B
Go
16 lines
344 B
Go
package client
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/lightninglabs/loop/lndclient"
|
|
)
|
|
|
|
// clientConfig contains config items for the swap client.
|
|
type clientConfig struct {
|
|
LndServices *lndclient.LndServices
|
|
Server swapServerClient
|
|
Store swapClientStore
|
|
CreateExpiryTimer func(expiry time.Duration) <-chan time.Time
|
|
}
|