mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
15 lines
348 B
Go
15 lines
348 B
Go
package client
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/lightninglabs/nautilus/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
|
|
}
|