mirror of
https://github.com/lightninglabs/loop
synced 2024-11-04 06:00:21 +00:00
19 lines
451 B
Go
19 lines
451 B
Go
package loop
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/lightninglabs/loop/lndclient"
|
|
"github.com/lightninglabs/loop/loopdb"
|
|
"github.com/lightninglabs/loop/lsat"
|
|
)
|
|
|
|
// clientConfig contains config items for the swap client.
|
|
type clientConfig struct {
|
|
LndServices *lndclient.LndServices
|
|
Server swapServerClient
|
|
Store loopdb.SwapStore
|
|
LsatStore lsat.Store
|
|
CreateExpiryTimer func(expiry time.Duration) <-chan time.Time
|
|
}
|